Navigation Menu

Skip to content

Commit

Permalink
Release 0.12.0a1
Browse files Browse the repository at this point in the history
  • Loading branch information
jsocol committed May 30, 2016
1 parent 558352e commit 99d6663
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@

setup(
name='django-waffle',
version='0.11.1',
version='0.12.0a1',
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
Expand Up @@ -6,7 +6,7 @@
from waffle.utils import get_setting, keyfmt, get_cache


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


Expand Down

3 comments on commit 99d6663

@schinckel
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not on pypi yet? Coming soon?

(I need the cache flush thing to fix some issues I'm having with tests on flag-protected views)

@jsocol
Copy link
Collaborator Author

@jsocol jsocol commented on 99d6663 Jun 15, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@schinckel I'm trying to gather some feedback before finishing out the breaking changes in 0.12. Would you be willing to install the prerelease (pip should be able to install the zip file directly) and test it out in your environment?

It'll probably be around the end of the month before I get to packaging up the rest of the changes.

@codeadict
Copy link

@codeadict codeadict commented on 99d6663 Mar 29, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there any plan to release 0.12 soon? Has been like a year and nothing happened :(

Please sign in to comment.