Skip to content

Commit c26ee23

Browse files
committed
Merge branch 'release/v0.3.6'
2 parents 7c80e50 + 54b9bce commit c26ee23

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Django Tagging Changelog
33
========================
44

5+
Version 0.3.6, 13th May 2015:
6+
-----------------------------
7+
8+
* Corrected initial migration
9+
510
Version 0.3.5, 13th May 2015:
611
-----------------------------
712

tagging/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 3, 5, "final", 0)
1+
VERSION = (0, 3, 6, "final", 0)
22

33

44
def get_version():

tagging/migrations/0001_initial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class Migration(migrations.Migration):
77

88
dependencies = [
9-
('contenttypes', '0002_remove_content_type_name'),
9+
('contenttypes', '0001_initial'),
1010
]
1111

1212
operations = [

0 commit comments

Comments
 (0)