Skip to content

Commit

Permalink
Releasing version 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonb committed Jun 28, 2017
1 parent 9af7225 commit e8e4668
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 19 deletions.
18 changes: 10 additions & 8 deletions docs/about/roadmap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,23 @@ support for Django 1.9 without deprecating any other versions.
0.12_ includes a couple of significant refactors designed to pay down
some of the debt that's accrued in the past few years.

0.12 drops support for all versions of Django prior to 1.8, including
dropping South migrations (and finally being rid of the old issues with
them). Along with that, it changes the way settings are configured to be
more modern.

It also includes finally making a decision about
auto-create/data-in-settings.
It also includes support for Django 1.10 and above.


0.13
----

0.13_ is about closing some long-standing feature gaps, like segmenting
0.13_ drops support for all versions of Django prior to 1.8, including
dropping South migrations (and finally being rid of the old issues with
them). Along with that, it changes the way settings are configured to be
more modern.

0.13 is about closing some long-standing feature gaps, like segmenting
by IP and User-Agent.

It also includes finally making a decision about
auto-create/data-in-settings.


Toward 1.0
==========
Expand Down
20 changes: 10 additions & 10 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@
master_doc = 'index'

# General information about the project.
project = u'django-waffle'
copyright = u'2012-2015, James Socol'
project = 'django-waffle'
copyright = '2012-2017, James Socol'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.11'
version = '0.12'
# The full version, including alpha/beta/rc tags.
release = '0.11.1'
release = '0.12.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -183,8 +183,8 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'django-waffle.tex', u'django-waffle Documentation',
u'James Socol', 'manual'),
('index', 'django-waffle.tex', 'django-waffle Documentation',
'James Socol', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -213,8 +213,8 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'django-waffle', u'django-waffle Documentation',
[u'James Socol'], 1)
('index', 'django-waffle', 'django-waffle Documentation',
['James Socol'], 1)
]

# If true, show URL addresses after external links.
Expand All @@ -227,8 +227,8 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'django-waffle', u'django-waffle Documentation',
u'James Socol', 'django-waffle', 'One line description of project.',
('index', 'django-waffle', 'django-waffle Documentation',
'James Socol', 'django-waffle', 'One line description of project.',
'Miscellaneous'),
]

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.12.0a1',
version='0.12.0',
description='A feature flipper for Django.',
long_description=open('README.rst').read(),
author='James Socol',
Expand Down

0 comments on commit e8e4668

Please sign in to comment.