aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.txt
diff options
context:
space:
mode:
authorJonas Genannt <genannt@debian.org>2015-11-15 22:26:10 +0100
committerJonas Genannt <genannt@debian.org>2015-11-15 22:26:10 +0100
commitda6a2bd205506257eaa6785c00981c88146d6c9f (patch)
tree6636c5e5a0186d9bf42c0df12bbb2180480ace7b /CHANGELOG.txt
parent24cd0a91184be6fa20168f9b132b1ab3f5911949 (diff)
parentd65aa3c3c146b12548a54c894060bce9a8715ad2 (diff)
downloadpython-django-tagging-da6a2bd205506257eaa6785c00981c88146d6c9f.tar
python-django-tagging-da6a2bd205506257eaa6785c00981c88146d6c9f.tar.gz
Merge tag 'upstream/0.4'
Upstream version 0.4 # gpg: Signature made Sun 15 Nov 2015 10:26:06 PM CET using RSA key ID 016CFFD0 # gpg: Good signature from "Jonas Genannt <jonas@brachium-system.net>" # gpg: aka "Jonas Genannt <jonas.genannt@capi2name.de>" # gpg: aka "Jonas Genannt <genannt@debian.org>" * tag 'upstream/0.4': Imported Upstream version 0.4
Diffstat (limited to 'CHANGELOG.txt')
-rw-r--r--CHANGELOG.txt37
1 files changed, 34 insertions, 3 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 4303c2a..5751870 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -2,10 +2,41 @@
Django Tagging Changelog
========================
-Version 0.3.1, Not released:
-----------------------------
+Version 0.3.6, 13th May 2015:
+-----------------------------
+
+* Corrected initial migration
+
+Version 0.3.5, 13th May 2015:
+-----------------------------
+
+* Added support for Django 1.8
+* Using migrations to fix syncdb
+* Rename get_query_set to get_queryset
+* Import GenericForeignKey from the new location
+
+Version 0.3.4, 7th November 2014:
+---------------------------------
+
+* Fix unicode errors in admin
+
+Version 0.3.3, 15th October 2014:
+---------------------------------
+
+* Added support for Django 1.7
+
+Version 0.3.2, 18th February 2014:
+----------------------------------
+
+* Added support for Django 1.4 and 1.5
+* Added support for Python 2.6 to 3.3
+* Added tox to test and coverage
+
+Version 0.3.1, 22nd January 2010:
+---------------------------------
* Fixed Django 1.2 support (did not add anything new)
+* Fixed #95 — tagging.register won't stomp on model attributes
Version 0.3.0, 22nd August 2009:
--------------------------------
@@ -24,7 +55,7 @@ Version 0.3.0, 22nd August 2009:
* ``TaggedItemManager``'s methods now accept a ``QuerySet`` or a
``Model`` class. If a ``QuerySet`` is given, it will be used as the
basis for the ``QuerySet``s the methods return, so can be used to
- restrict results to a subset of a model's instances. The
+ restrict results to a subset of a model's instances. The
`tagged_object_list`` generic view and ModelTaggedItemManager``
manager have been updated accordingly.