diff --git a/CHANGES.txt b/CHANGES.txt index 85bc397d0a..86b78429ee 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -New in master +New in v7.6.1 ============= Features diff --git a/docs/extending.txt b/docs/extending.txt index 9db5344507..092957a6b3 100644 --- a/docs/extending.txt +++ b/docs/extending.txt @@ -8,7 +8,7 @@ Extending Nikola ================ -:Version: 7.6.0 +:Version: 7.6.1 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/man/nikola.1.gz b/docs/man/nikola.1.gz index e2425f486a..f8aac6c4c5 100644 Binary files a/docs/man/nikola.1.gz and b/docs/man/nikola.1.gz differ diff --git a/docs/man/nikola.rst b/docs/man/nikola.rst index e73685db19..683ffc0bdc 100644 --- a/docs/man/nikola.rst +++ b/docs/man/nikola.rst @@ -6,7 +6,7 @@ Nikola A Static Site and Blog Generator -------------------------------- -:Version: Nikola v7.6.0 +:Version: Nikola v7.6.1 :Manual section: 1 :Manual group: User Commands diff --git a/docs/manual.txt b/docs/manual.txt index 45f80c0352..2aa4b17a5e 100644 --- a/docs/manual.txt +++ b/docs/manual.txt @@ -7,7 +7,7 @@ The Nikola Handbook =================== -:Version: 7.6.0 +:Version: 7.6.1 .. class:: alert alert-info pull-right diff --git a/docs/social_buttons.txt b/docs/social_buttons.txt index 9436ee741b..65b9fdcc79 100644 --- a/docs/social_buttons.txt +++ b/docs/social_buttons.txt @@ -8,7 +8,7 @@ Using Alternative Social Buttons with Nikola ============================================ -:Version: 7.6.0 +:Version: 7.6.1 .. class:: alert alert-info pull-right diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index 36cf31b50f..a3a36fbfd7 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '7.6.0' +version = '7.6.1' # The full version, including alpha/beta/rc tags. -release = '7.6.0' +release = '7.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/theming.txt b/docs/theming.txt index 77038a8b24..3931e7ddc9 100644 --- a/docs/theming.txt +++ b/docs/theming.txt @@ -8,7 +8,7 @@ Theming Nikola ============== -:Version: 7.6.0 +:Version: 7.6.1 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/nikola/__init__.py b/nikola/__init__.py index 263874f962..52b332227a 100644 --- a/nikola/__init__.py +++ b/nikola/__init__.py @@ -27,7 +27,7 @@ from __future__ import absolute_import import os -__version__ = "7.6.0" +__version__ = "7.6.1" DEBUG = bool(os.getenv('NIKOLA_DEBUG')) from .nikola import Nikola # NOQA diff --git a/setup.py b/setup.py index 81ec5703a4..13c779e696 100755 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ def run(self): setup(name='Nikola', - version='7.6.0', + version='7.6.1', description='A modular, fast, simple, static website generator', long_description=open('README.rst').read(), author='Roberto Alsina and others',