Skip to content

Commit 40be7cc

Browse files
committed
version bump
1 parent 3926e09 commit 40be7cc

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CHANGELOG.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
Changelog
44
---------
55

6-
0.3.1 (2014-01-XX)
6+
0.3.1 (2014-02-02)
77
~~~~~~~~~~~~~~~~~~
88

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

1314
0.3.0 (2013-09-15)
1415
~~~~~~~~~~~~~~~~~~

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Limitations
8383
Requirements
8484
------------
8585

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

8888
Installation
8989
------------

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import setup
22

33

44
setup(
55
name='django-db-parti',
6-
version='0.3.0',
7-
packages=find_packages(),
6+
version='0.3.1',
7+
packages=['dbparti'],
88
url='https://github.com/maxtepkeev/django-db-parti',
99
license=open('LICENSE').read(),
1010
author='Max Tepkeev',
@@ -13,7 +13,7 @@
1313
long_description=open('README.rst').read() + '\n\n' +
1414
open('CHANGELOG.rst').read(),
1515
keywords='django,partition,database,table',
16-
install_requires=['Django >= 1.5'],
16+
install_requires=['Django >= 1.4'],
1717
zip_safe=False,
1818
classifiers=[
1919
'Framework :: Django',
@@ -24,6 +24,6 @@
2424
'Intended Audience :: Developers',
2525
'Environment :: Web Environment',
2626
'Programming Language :: Python :: 2.7',
27-
'Programming Language :: Python :: 3',
27+
'Programming Language :: Python :: 3.3',
2828
],
2929
)

0 commit comments

Comments
 (0)