Skip to content

Commit

Permalink
Releasing 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
krischer committed Jul 6, 2016
1 parent 129187b commit 663c719
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Changes
=======

0.3.x
-----
0.3.0 (2016-07-06)
------------------

- Added support for Django 1.8.
- Django 1.6 is no longer officially supported.
- Removed features that will be removed with Django 1.9.
- Added support for Django 1.8 and 1.9.
- Now works for Django 1.6-1.9 and Python 2.7, 3.3, 3.4, and 3.5
- Using the `syncdb` Django command is no longer recommended. Please use
`migrate` instead.
- Removed South migrations in favor of Django migrations.
- Supports django migrations as well as a backwards compatible path for
south migrations.

0.2.5 (2014-10-25)
------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@

# General information about the project.
project = u'django-plugins'
copyright = u'2010-2015, sirex and krischer'
copyright = u'2010-2016, sirex and krischer'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.3.x'
version = '0.3'
# The full verson, including alpha/beta/rc tags.
release = '0.3.x'
release = '0.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read_docs(filename):
long_description += read_docs('CHANGES.rst')

setup(name='django-plugins',
version='0.3.x',
version='0.3.0',
author='Lion Krischer',
author_email='[email protected]',
packages=find_packages(exclude=['sample-project']),
Expand Down

0 comments on commit 663c719

Please sign in to comment.