diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e20c92f1d..444e269e1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.3 +current_version = 1.0.4 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 8759b3c0b..eedf3b636 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +Version 1.0.4 (2017-05-19) +-------------------------- + +Quick fix for verbose_field_name issue from 1.0.3 (#722) + + Version 1.0.3 (2017-05-16) -------------------------- diff --git a/django_filters/__init__.py b/django_filters/__init__.py index 2f73c4ffa..9d57b0fb2 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -11,7 +11,7 @@ except ImportError: rest_framework = None -__version__ = '1.0.3' +__version__ = '1.0.4' def parse_version(version): diff --git a/docs/conf.py b/docs/conf.py index 8419a5481..790cf9043 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '1.0.3' +version = '1.0.4' # The full version, including alpha/beta/rc tags. -release = '1.0.3' +release = '1.0.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index ea35e5845..44c190cb3 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ readme = f.read() f.close() -version = '1.0.3' +version = '1.0.4' if sys.argv[-1] == 'publish': if os.system("pip freeze | grep wheel"):