From e4275c0f851cda7c6edeaa5e0d2cc70ed9fe9982 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Thu, 30 Nov 2017 11:49:13 +0200 Subject: [PATCH] Increase version to 3.8.2 --- docs/conf.py | 13 +------------ docs/main/changelog.rst | 4 ++++ src/dependency_injector/__init__.py | 2 +- 3 files changed, 6 insertions(+), 13 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 00679ec2..8a6452d1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -112,7 +112,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 = 'default' +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 @@ -206,17 +206,6 @@ html_static_path = ['_static'] # Output file base name for HTML help builder. htmlhelp_basename = 'dependency_injectordoc' -# on_rtd is whether we are on readthedocs.org, this line of code grabbed from -# docs.readthedocs.org -on_rtd = os.environ.get('READTHEDOCS', None) == 'True' - -if not on_rtd: # only import and set the theme if we're building docs locally - import sphinx_rtd_theme - html_theme = 'sphinx_rtd_theme' - html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] -# otherwise, readthedocs.org uses their theme by default, so no need to -# specify it - # -- Options for LaTeX output --------------------------------------------- latex_elements = { diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 7f9841bd..12dc22af 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,6 +7,10 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ +3.8.2 +----- +- Fix padding problem in code samples in docs (part 2). + 3.8.1 ----- - Fix padding problem in code samples in docs. diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index c251f296..b7332631 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Dependency injector top-level package.""" -__version__ = '3.8.1' +__version__ = '3.8.2' """Version number that follows semantic versioning. :type: str