diff --git a/CHANGES.txt b/CHANGES.txt index fa99985526..cf5f65ec38 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -New in master +New in v7.6.3 ============= Features diff --git a/docs/extending.txt b/docs/extending.txt index 7a071f9781..d4336317a4 100644 --- a/docs/extending.txt +++ b/docs/extending.txt @@ -8,7 +8,7 @@ Extending Nikola ================ -:Version: 7.6.2 +:Version: 7.6.3 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/man/nikola.1.gz b/docs/man/nikola.1.gz index 429e63e83f..31fe1f461c 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 6729a79620..7517f37a19 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.2 +:Version: Nikola v7.6.3 :Manual section: 1 :Manual group: User Commands diff --git a/docs/manual.txt b/docs/manual.txt index 6d656b138e..f032a9af30 100644 --- a/docs/manual.txt +++ b/docs/manual.txt @@ -7,7 +7,7 @@ The Nikola Handbook =================== -:Version: 7.6.2 +:Version: 7.6.3 .. class:: alert alert-info pull-right diff --git a/docs/social_buttons.txt b/docs/social_buttons.txt index b4b91ddd27..8644a0b9b8 100644 --- a/docs/social_buttons.txt +++ b/docs/social_buttons.txt @@ -8,7 +8,7 @@ Using Alternative Social Buttons with Nikola ============================================ -:Version: 7.6.2 +:Version: 7.6.3 .. class:: alert alert-info pull-right diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index e1593e35b1..812bb2686f 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.2' +version = '7.6.3' # The full version, including alpha/beta/rc tags. -release = '7.6.2' +release = '7.6.3' # 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 37b0e86823..bf4960b9b2 100644 --- a/docs/theming.txt +++ b/docs/theming.txt @@ -8,7 +8,7 @@ Theming Nikola ============== -:Version: 7.6.2 +:Version: 7.6.3 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/nikola/__init__.py b/nikola/__init__.py index 6a9fd8dc6d..b15784d0bd 100644 --- a/nikola/__init__.py +++ b/nikola/__init__.py @@ -29,7 +29,7 @@ from __future__ import absolute_import import os -__version__ = "7.6.2" +__version__ = "7.6.3" DEBUG = bool(os.getenv('NIKOLA_DEBUG')) from .nikola import Nikola # NOQA diff --git a/setup.py b/setup.py index e64ba173e0..367a5086bd 100755 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ def run(self): setup(name='Nikola', - version='7.6.2', + version='7.6.3', description='A modular, fast, simple, static website generator', long_description=open('README.rst').read(), author='Roberto Alsina and others',