From 40be7ccee85482753ae15ffc3b8c68531cfbb74e Mon Sep 17 00:00:00 2001 From: Max Tepkeev Date: Sun, 2 Feb 2014 19:15:05 +0400 Subject: [PATCH] version bump --- CHANGELOG.rst | 7 ++++--- README.rst | 2 +- setup.py | 10 +++++----- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3cbb9d1..8ca8608 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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) ~~~~~~~~~~~~~~~~~~ diff --git a/README.rst b/README.rst index 8abae0f..5788a90 100644 --- a/README.rst +++ b/README.rst @@ -83,7 +83,7 @@ Limitations Requirements ------------ -* Django_ 1.5.x (may work with older versions, but untested) +* Django_ >= 1.4.x Installation ------------ diff --git a/setup.py b/setup.py index ebe9ccf..3a57e69 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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', @@ -24,6 +24,6 @@ 'Intended Audience :: Developers', 'Environment :: Web Environment', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', ], )