Skip to content

Commit

Permalink
Merge pull request #208 from jsocol/release-0.11.1
Browse files Browse the repository at this point in the history
Version 0.11.1
  • Loading branch information
jsocol committed May 28, 2016
2 parents adce889 + 8a084a1 commit 9170ffd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Waffle Changelog
================

v0.11.1
=======

- Fix Django 1.9 support.
- Fix several Python >=3.4 issues.
- Fix output of `waffle_switch --list`.
- Fix small documentation issues.
- Cache a plain list instead of a ValuesListQuerySet.


v0.11
=====

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '0.11'
# The full version, including alpha/beta/rc tags.
release = '0.11'
release = '0.11.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='django-waffle',
version='0.11',
version='0.11.1',
description='A feature flipper for Django.',
long_description=open('README.rst').read(),
author='James Socol',
Expand Down
2 changes: 1 addition & 1 deletion waffle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from waffle.utils import get_setting, keyfmt


VERSION = (0, 11)
VERSION = (0, 11, 1)
__version__ = '.'.join(map(str, VERSION))


Expand Down

0 comments on commit 9170ffd

Please sign in to comment.