aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.txt
diff options
context:
space:
mode:
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.