diff --git a/CHANGES.txt b/CHANGES.txt index 405d554e59..ea3cd93a8d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -New in master +New in v7.6.0 ============= Features diff --git a/docs/extending.txt b/docs/extending.txt index 40ddfc5786..9db5344507 100644 --- a/docs/extending.txt +++ b/docs/extending.txt @@ -8,7 +8,7 @@ Extending Nikola ================ -:Version: 7.5.1 +:Version: 7.6.0 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/man/nikola.1.gz b/docs/man/nikola.1.gz index b46b5e5168..e2425f486a 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 ed6c90587a..036170d776 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.5.1 +:Version: Nikola v7.6.0 :Manual section: 1 :Manual group: User Commands diff --git a/docs/manual.txt b/docs/manual.txt index ec9b8ec8c8..d287099d1a 100644 --- a/docs/manual.txt +++ b/docs/manual.txt @@ -7,7 +7,7 @@ The Nikola Handbook =================== -:Version: 7.5.1 +:Version: 7.6.0 .. class:: alert alert-info pull-right diff --git a/docs/social_buttons.txt b/docs/social_buttons.txt index 1f21d5e591..9436ee741b 100644 --- a/docs/social_buttons.txt +++ b/docs/social_buttons.txt @@ -8,7 +8,7 @@ Using Alternative Social Buttons with Nikola ============================================ -:Version: 7.5.1 +:Version: 7.6.0 .. class:: alert alert-info pull-right diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index 8a8a779cbf..36cf31b50f 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '7.5.1' +version = '7.6.0' # The full version, including alpha/beta/rc tags. -release = '7.5.1' +release = '7.6.0' # 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 7109a00adc..f9667ed0ae 100644 --- a/docs/theming.txt +++ b/docs/theming.txt @@ -8,7 +8,7 @@ Theming Nikola ============== -:Version: 7.5.1 +:Version: 7.6.0 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/nikola/__init__.py b/nikola/__init__.py index 20eccd8155..263874f962 100644 --- a/nikola/__init__.py +++ b/nikola/__init__.py @@ -27,7 +27,7 @@ from __future__ import absolute_import import os -__version__ = "7.5.1" +__version__ = "7.6.0" DEBUG = bool(os.getenv('NIKOLA_DEBUG')) from .nikola import Nikola # NOQA diff --git a/setup.py b/setup.py index 027f456d02..81ec5703a4 100755 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ def run(self): setup(name='Nikola', - version='7.5.1', + version='7.6.0', description='A modular, fast, simple, static website generator', long_description=open('README.rst').read(), author='Roberto Alsina and others',