From 5f8e3505270ea954781edff6e0c5b0e992e113c4 Mon Sep 17 00:00:00 2001 From: Marco Bonetti Date: Wed, 30 Mar 2016 21:22:25 +0200 Subject: [PATCH 1/2] dont require a specific theme --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 35ebcbc..48b6f28 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -108,7 +108,7 @@ todo_include_todos = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'sphinx_rtd_theme' +# html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the From 49f486a00b1f26cec9e1cafdaecea271e3c853f0 Mon Sep 17 00:00:00 2001 From: Marco Bonetti Date: Wed, 30 Mar 2016 21:25:55 +0200 Subject: [PATCH 2/2] getting ready for 0.7.11 --- CHANGES | 4 ++-- docs/conf.py | 6 +++--- rosetta/__init__.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index a3915e1..1ddac5d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,8 @@ Version History =============== -Version 0.7.11 (unreleased) ---------------------------- +Version 0.7.11 +-------------- * Make MO file compilation optional (PR #166, Issue #155, thanks @nealtodd) * Fix an invalid page get parameter by falling back to page 1 (PR #165, thanks @nealtodd) * Adds reference language selector (PR #60, thanks @hsoft) diff --git a/docs/conf.py b/docs/conf.py index 48b6f28..203acb1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,7 +47,7 @@ master_doc = 'index' # General information about the project. project = u'Django Rosetta' -copyright = u'2016, Marco Bonetti' +copyright = u'2008 – 2016 Marco Bonetti and contributors' author = u'Marco Bonetti' # The version info for the project you're documenting, acts as replacement for @@ -55,9 +55,9 @@ author = u'Marco Bonetti' # built documents. # # The short X.Y version. -version = '0.7.10' +version = '0.7.11' # The full version, including alpha/beta/rc tags. -release = '0.7.10' +release = '0.7.11' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/rosetta/__init__.py b/rosetta/__init__.py index b18a381..8bfcfd7 100644 --- a/rosetta/__init__.py +++ b/rosetta/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 7, 10) +VERSION = (0, 7, 11) def get_version(svn=False, limit=3):