Skip to content

Commit

Permalink
Bump version to 1.3, added Django classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Apr 13, 2015
1 parent 0019286 commit 2215e1d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,10 @@
Changes in version 1.3
----------------------

* Added Django 1.8 support
* Clarify the ``<skipped for safety reasons ..>`` message for ``...delete...()`` and ``...save...()`` methods in the ``{% print %}`` output.


Changes in version 1.2.1
------------------------

Expand Down
4 changes: 2 additions & 2 deletions debugtools/__init__.py
@@ -1,7 +1,7 @@
# following PEP 386
__version__ = "1.2.1"
__version__ = "1.3"

VERSION = (1, 2, 1)
VERSION = (1, 3, 0)

# Make sure the ``{% print %}`` is always available, even without a {% load debug_tags %} call.
# **NOTE** this uses the undocumented, unofficial add_to_builtins() call. It's not promoted
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Expand Up @@ -51,6 +51,11 @@ def find_version(*parts):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Framework :: Django',
'Framework :: Django :: 1.4',
'Framework :: Django :: 1.5',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Topic :: Software Development :: Debuggers',
]
)

0 comments on commit 2215e1d

Please sign in to comment.