Skip to content

Commit

Permalink
Prepare for 0.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Mar 11, 2016
1 parent 6639fd6 commit ba92f71
Show file tree
Hide file tree
Showing 9 changed files with 52 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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]+))?
Expand Down
12 changes: 12 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)
---------------------------

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ recursive-include docs *
recursive-include requirements *
recursive-include tests *
recursive-include django_filters/locale *
prune docs/_build
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Install using pip::

Or clone the repo and add to your PYTHONPATH::

git clone [email protected]:alex/django-filter.git
git clone [email protected]:carltongibson/django-filter.git

Usage
-----
Expand Down
2 changes: 1 addition & 1 deletion django_filters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .filterset import FilterSet
from .filters import *

__version__ = '0.12.0'
__version__ = '0.13.0'


def parse_version(version):
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# 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.
Expand Down
1 change: 0 additions & 1 deletion requirements/docs.txt

This file was deleted.

34 changes: 30 additions & 4 deletions requirements/maintainer.txt
Original file line number Diff line number Diff line change
@@ -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
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
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"):
Expand All @@ -30,7 +30,9 @@
long_description=readme,
author='Alex Gaynor',
author_email='[email protected]',
url='http://github.com/alex/django-filter/tree/master',
maintainer='Carlton Gibson',
maintainer_email='[email protected]',
url='http://github.com/carltongibson/django-filter/tree/master',
packages=find_packages(exclude=['tests']),
package_data = {
'django_filters': [
Expand Down

0 comments on commit ba92f71

Please sign in to comment.