Prepare for 0.13 release

This commit is contained in:
Carlton Gibson 2016-03-11 20:38:25 +01:00
parent 6639fd6850
commit ba92f71fec
9 changed files with 52 additions and 12 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.12.0
current_version = 0.13.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?

View File

@ -1,3 +1,15 @@
Version 0.13.0 (2016-03-11)
---------------------------
* Add support for filtering by CSV #363
* Add DateTimeFromToRangeFilter #376
* Add Chinese translation #359
* Lots of fixes.
Version 0.12.0 (2016-01-07)
---------------------------

View File

@ -8,3 +8,4 @@ recursive-include docs *
recursive-include requirements *
recursive-include tests *
recursive-include django_filters/locale *
prune docs/_build

View File

@ -24,7 +24,7 @@ Install using pip::
Or clone the repo and add to your PYTHONPATH::
git clone git@github.com:alex/django-filter.git
git clone git@github.com:carltongibson/django-filter.git
Usage
-----

View File

@ -3,7 +3,7 @@ from __future__ import absolute_import
from .filterset import FilterSet
from .filters import *
__version__ = '0.12.0'
__version__ = '0.13.0'
def parse_version(version):

View File

@ -48,9 +48,9 @@ copyright = u'2013, Alex Gaynor and others.'
# built documents.
#
# The short X.Y version.
version = '0.12.0'
version = '0.13.0'
# The full version, including alpha/beta/rc tags.
release = '0.12.0'
release = '0.13.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -1 +0,0 @@
Sphinx

View File

@ -1,4 +1,30 @@
bumpversion
twine==1.5.0
wheel==0.24.0
coverage==3.7.1
alabaster==0.7.7
argh==0.26.1
Babel==2.2.0
backports.ssl-match-hostname==3.4.0.2
bumpversion==0.5.3
certifi==2015.9.6.2
coverage==3.7.1
django-discover-runner==1.0
docutils==0.12
funcsigs==0.4
Jinja2==2.8
livereload==2.4.0
MarkupSafe==0.23
mock==1.3.0
pathtools==0.1.2
pbr==1.7.0
pkginfo==1.2.1
Pygments==2.1.3
pytz==2015.7
PyYAML==3.11
requests==2.9.1
requests-toolbelt==0.6.0
six==1.9.0
snowballstemmer==1.2.1
Sphinx==1.3.6
sphinx-autobuild==0.5.2
sphinx-rtd-theme==0.1.9
tornado==4.2.1
twine==1.6.5
watchdog==0.8.3

View File

@ -6,7 +6,7 @@ f = open('README.rst')
readme = f.read()
f.close()
version = '0.12.0'
version = '0.13.0'
if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):
@ -30,7 +30,9 @@ setup(
long_description=readme,
author='Alex Gaynor',
author_email='alex.gaynor@gmail.com',
url='http://github.com/alex/django-filter/tree/master',
maintainer='Carlton Gibson',
maintainer_email='carlton.gibson@noumenal.es',
url='http://github.com/carltongibson/django-filter/tree/master',
packages=find_packages(exclude=['tests']),
package_data = {
'django_filters': [