Skip to content

Commit 5c8ce15

Browse files
committed
Updated version and wrote some things.
1 parent 2f9b27f commit 5c8ce15

File tree

7 files changed

+67
-19
lines changed

7 files changed

+67
-19
lines changed

CHANGELOG.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Django Tagging Changelog
33
========================
44

5+
Version 0.5.0, 5th March 2013:
6+
------------------------------
7+
8+
* Added support for Django 1.4 and 1.5
9+
* Added support for Python 2.6 to 3.3
10+
* Added tox to test and coverage
11+
512
Version 0.3.1, 22nd January 2010:
613
---------------------------------
714

@@ -25,7 +32,7 @@ Version 0.3.0, 22nd August 2009:
2532
* ``TaggedItemManager``'s methods now accept a ``QuerySet`` or a
2633
``Model`` class. If a ``QuerySet`` is given, it will be used as the
2734
basis for the ``QuerySet``s the methods return, so can be used to
28-
restrict results to a subset of a model's instances. The
35+
restrict results to a subset of a model's instances. The
2936
`tagged_object_list`` generic view and ModelTaggedItemManager``
3037
manager have been updated accordingly.
3138

INSTALL.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ directory somewhere on your Python path, or symlink to it from
99
somewhere on your Python path; this is useful if you're working from a
1010
Subversion checkout.
1111

12-
Note that this application requires Python 2.3 or later, and Django
13-
1.0 or later. You can obtain Python from http://www.python.org/ and
14-
Django from http://www.djangoproject.com/.
12+
Note that this application requires Python 2.6 or later, and Django
13+
1.4 or later. You can obtain Python from http://www.python.org/ and
14+
Django from http://www.djangoproject.com/.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
5252
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
5353
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5454
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
55-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
55+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

MANIFEST

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# file GENERATED by distutils, do NOT edit
2+
CHANGELOG.txt
3+
INSTALL.txt
4+
LICENSE.txt
5+
MANIFEST.in
6+
README.txt
7+
setup.py
8+
docs/overview.txt
9+
tagging/__init__.py
10+
tagging/admin.py
11+
tagging/fields.py
12+
tagging/forms.py
13+
tagging/generic.py
14+
tagging/managers.py
15+
tagging/models.py
16+
tagging/settings.py
17+
tagging/utils.py
18+
tagging/views.py
19+
tagging/__pycache__/__init__.cpython-33.pyc
20+
tagging/__pycache__/admin.cpython-33.pyc
21+
tagging/__pycache__/fields.cpython-33.pyc
22+
tagging/__pycache__/forms.cpython-33.pyc
23+
tagging/__pycache__/managers.cpython-33.pyc
24+
tagging/__pycache__/models.cpython-33.pyc
25+
tagging/__pycache__/settings.cpython-33.pyc
26+
tagging/__pycache__/utils.cpython-33.pyc
27+
tagging/templatetags/__init__.py
28+
tagging/templatetags/tagging_tags.py
29+
tagging/templatetags/__pycache__/__init__.cpython-33.pyc
30+
tagging/templatetags/__pycache__/tagging_tags.cpython-33.pyc
31+
tagging/tests/__init__.py
32+
tagging/tests/models.py
33+
tagging/tests/tags.txt
34+
tagging/tests/tests.py
35+
tagging/tests/__pycache__/__init__.cpython-33.pyc
36+
tagging/tests/__pycache__/models.cpython-33.pyc
37+
tagging/tests/__pycache__/tests.cpython-33.pyc

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ This is a generic tagging application for Django projects
77
For installation instructions, see the file "INSTALL.txt" in this
88
directory; for instructions on how to use this application, and on
99
what it provides, see the file "overview.txt" in the "docs/"
10-
directory.
10+
directory.

setup.py

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import tagging
99

1010

11-
1211
def fullsplit(path, result=None):
1312
"""
1413
Split a pathname into components (the opposite of os.path.join) in a
@@ -49,22 +48,28 @@ def fullsplit(path, result=None):
4948
elif filenames:
5049
data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]])
5150

52-
5351
setup(
5452
name = 'django-tagging',
5553
version = tagging.get_version(),
5654
description = 'Generic tagging application for Django',
5755
author = 'Jonathan Buchanan',
5856
author_email = '[email protected]',
59-
url = 'http://code.google.com/p/django-tagging/',
57+
url = 'https://github.com/jefftriplett/django-tagging',
6058
packages = packages,
6159
data_files = data_files,
62-
classifiers = ['Development Status :: 4 - Beta',
63-
'Environment :: Web Environment',
64-
'Framework :: Django',
65-
'Intended Audience :: Developers',
66-
'License :: OSI Approved :: BSD License',
67-
'Operating System :: OS Independent',
68-
'Programming Language :: Python',
69-
'Topic :: Utilities'],
60+
classifiers = [
61+
'Development Status :: 4 - Beta',
62+
'Environment :: Web Environment',
63+
'Framework :: Django',
64+
'Intended Audience :: Developers',
65+
'License :: OSI Approved :: BSD License',
66+
'Operating System :: OS Independent',
67+
'Programming Language :: Python',
68+
'Programming Language :: Python :: 2',
69+
'Programming Language :: Python :: 2.6',
70+
'Programming Language :: Python :: 2.7',
71+
'Programming Language :: Python :: 3',
72+
'Programming Language :: Python :: 3.3',
73+
'Topic :: Utilities',
74+
],
7075
)

tagging/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
VERSION = (0, 4, 0, "dev", 1)
2-
1+
VERSION = (0, 5, 0, "dev", 1)
32

43

54
def get_version():

0 commit comments

Comments
 (0)