From 99d66631942d6debe311b4191d3784ff2a75735f Mon Sep 17 00:00:00 2001 From: James Socol Date: Mon, 30 May 2016 14:38:06 -0400 Subject: [PATCH] Release 0.12.0a1 --- setup.py | 2 +- waffle/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 31f5d64f..6b67587e 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/waffle/__init__.py b/waffle/__init__.py index fd6df449..4f51d6a9 100644 --- a/waffle/__init__.py +++ b/waffle/__init__.py @@ -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))