[Python-modules-commits] [django-taggit] 01/04: Imported Upstream version 0.20.1

Michal Cihar nijel at moszumanska.debian.org
Wed Jun 29 13:31:08 UTC 2016


This is an automated email from the git hooks/post-receive script.

nijel pushed a commit to branch master
in repository django-taggit.

commit 21f20b2074e9b6b28dea6d7ba445ec9556ccbf03
Author: Michal Čihař <nijel at debian.org>
Date:   Wed Jun 29 15:13:33 2016 +0200

    Imported Upstream version 0.20.1
---
 CHANGELOG.txt                   | 5 +++++
 PKG-INFO                        | 2 +-
 django_taggit.egg-info/PKG-INFO | 2 +-
 taggit/__init__.py              | 2 +-
 taggit/models.py                | 2 ++
 5 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index ecc04ad..4137646 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,6 +1,11 @@
 Changelog
 =========
 
+0.20.1 (2016-06-23)
+~~~~~~~~~~~~~~~~~~~
+ * Specify `app_label` for `Tag` and `TaggedItem`
+  * https://github.com/alex/django-taggit/pull/420
+
 0.20.0 (2016-06-19)
 ~~~~~~~~~~~~~~~~~~~
  * Fix UnboundLocalError in _TaggableManager.set(..)
diff --git a/PKG-INFO b/PKG-INFO
index df979de..3d9f5ca 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: django-taggit
-Version: 0.20.0
+Version: 0.20.1
 Summary: django-taggit is a reusable Django application for simple tagging.
 Home-page: http://github.com/alex/django-taggit/tree/master
 Author: Alex Gaynor
diff --git a/django_taggit.egg-info/PKG-INFO b/django_taggit.egg-info/PKG-INFO
index df979de..3d9f5ca 100644
--- a/django_taggit.egg-info/PKG-INFO
+++ b/django_taggit.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: django-taggit
-Version: 0.20.0
+Version: 0.20.1
 Summary: django-taggit is a reusable Django application for simple tagging.
 Home-page: http://github.com/alex/django-taggit/tree/master
 Author: Alex Gaynor
diff --git a/taggit/__init__.py b/taggit/__init__.py
index ceb9331..6fcd25e 100644
--- a/taggit/__init__.py
+++ b/taggit/__init__.py
@@ -1,3 +1,3 @@
-VERSION = (0, 20, 0)
+VERSION = (0, 20, 1)
 
 default_app_config = 'taggit.apps.TaggitAppConfig'
diff --git a/taggit/models.py b/taggit/models.py
index 2189aac..a25cf23 100644
--- a/taggit/models.py
+++ b/taggit/models.py
@@ -100,6 +100,7 @@ class Tag(TagBase):
     class Meta:
         verbose_name = _("Tag")
         verbose_name_plural = _("Tags")
+        app_label = 'taggit'
 
 
 @python_2_unicode_compatible
@@ -223,6 +224,7 @@ class TaggedItem(GenericTaggedItemBase, TaggedItemBase):
     class Meta:
         verbose_name = _("Tagged Item")
         verbose_name_plural = _("Tagged Items")
+        app_label = 'taggit'
         if django.VERSION >= (1, 5):
             index_together = [
                 ["content_type", "object_id"],

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/django-taggit.git



More information about the Python-modules-commits mailing list