Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtepkeev committed Feb 2, 2014
1 parent 3926e09 commit 40be7cc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
Changelog
---------

0.3.1 (2014-01-XX)
0.3.1 (2014-02-02)
~~~~~~~~~~~~~~~~~~

- Added support for DateField and DateTimeField with auto_now and auto_now_add attributes set
- Added support for DateField and DateTimeField with auto_now and auto_now_add attributes set (Issue #3)
- Fixed an issue with unnecessary calling of partitioning functions while reading data from database
- MySQL: Fixed inability to create partitions for December when range was set to ``month``
- MySQL: Backend was completely broken in previous version, now everything should work properly
- MySQL: Backend was completely broken in previous version, now everything should work properly (Issue #4)

0.3.0 (2013-09-15)
~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Limitations
Requirements
------------

* Django_ 1.5.x (may work with older versions, but untested)
* Django_ >= 1.4.x

Installation
------------
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from setuptools import setup, find_packages
from setuptools import setup


setup(
name='django-db-parti',
version='0.3.0',
packages=find_packages(),
version='0.3.1',
packages=['dbparti'],
url='https://github.com/maxtepkeev/django-db-parti',
license=open('LICENSE').read(),
author='Max Tepkeev',
Expand All @@ -13,7 +13,7 @@
long_description=open('README.rst').read() + '\n\n' +
open('CHANGELOG.rst').read(),
keywords='django,partition,database,table',
install_requires=['Django >= 1.5'],
install_requires=['Django >= 1.4'],
zip_safe=False,
classifiers=[
'Framework :: Django',
Expand All @@ -24,6 +24,6 @@
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
)

0 comments on commit 40be7cc

Please sign in to comment.