diff --git a/CHANGES.txt b/CHANGES.txt index 176eec11d6..3dd52754d7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -New in master +New in v7.3.1 ============= Features diff --git a/README.rst b/README.rst index 5bae5f6ef4..84e8301aad 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,8 @@ __ https://www.transifex.com/projects/p/nikola/ Nikola Architecture ------------------- -.. image:: /docs/architecture/nikola-architecture-draw-io.png + +.. image:: https://getnikola.com/images/architecture.png Installation Instructions ------------------------- diff --git a/docs/extending.txt b/docs/extending.txt index a3ad6c1443..51c9f7d2be 100644 --- a/docs/extending.txt +++ b/docs/extending.txt @@ -8,7 +8,7 @@ Extending Nikola ================ -:Version: 7.3.0 +:Version: 7.3.1 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/getting-help.txt b/docs/getting-help.txt index 81913bfafb..cc0b3a7619 100644 --- a/docs/getting-help.txt +++ b/docs/getting-help.txt @@ -3,7 +3,7 @@ .. date: 1970-01-01 15:00:00 .. description: Get help using Nikola, or contact us. -:Version: 7.3.0 +:Version: 7.3.1 .. class:: alert alert-info pull-right diff --git a/docs/internals.txt b/docs/internals.txt index a025075244..2ade3c4be1 100644 --- a/docs/internals.txt +++ b/docs/internals.txt @@ -140,3 +140,8 @@ themes To change how the generated site looks, you can create custom themes. And of course, you can also replace or extend each of the existing plugins. + +Nikola Architecture +=================== + +.. thumbnail:: https://getnikola.com/images/architecture.png diff --git a/docs/man/nikola.1.gz b/docs/man/nikola.1.gz index 6142906ad7..3dfaebb6fd 100644 Binary files a/docs/man/nikola.1.gz and b/docs/man/nikola.1.gz differ diff --git a/docs/manual.txt b/docs/manual.txt index cf61abbad3..ec9f80e861 100644 --- a/docs/manual.txt +++ b/docs/manual.txt @@ -8,7 +8,7 @@ The Nikola Handbook =================== -:Version: 7.3.0 +:Version: 7.3.1 .. class:: alert alert-info pull-right diff --git a/docs/social_buttons.txt b/docs/social_buttons.txt index 989bba21eb..63ff897c31 100644 --- a/docs/social_buttons.txt +++ b/docs/social_buttons.txt @@ -8,7 +8,7 @@ Using Alternative Social Buttons with Nikola ============================================ -:Version: 7.3.0 +:Version: 7.3.1 .. class:: alert alert-info pull-right diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index 2722553f76..0fdfe77805 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '7.3.0' +version = '7.3.1' # The full version, including alpha/beta/rc tags. -release = '7.3.0' +release = '7.3.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 1c5e58603e..7e5d700ad2 100644 --- a/docs/theming.txt +++ b/docs/theming.txt @@ -8,7 +8,7 @@ Theming Nikola ============== -:Version: 7.3.0 +:Version: 7.3.1 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/upgrading-to-v6.txt b/docs/upgrading-to-v6.txt index e89cfc81ec..b0a9aad78a 100644 --- a/docs/upgrading-to-v6.txt +++ b/docs/upgrading-to-v6.txt @@ -8,7 +8,7 @@ Upgrading to v6 =============== -:Version: 7.3.0 +:Version: 7.3.1 .. class:: lead diff --git a/nikola/__init__.py b/nikola/__init__.py index 5081d946c7..226ed20395 100644 --- a/nikola/__init__.py +++ b/nikola/__init__.py @@ -27,7 +27,7 @@ from __future__ import absolute_import import os -__version__ = "7.3.0" +__version__ = "7.3.1" DEBUG = bool(os.getenv('NIKOLA_DEBUG')) from .nikola import Nikola # NOQA diff --git a/setup.py b/setup.py index d8abe23268..7254158062 100755 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ def run(self): setup(name='Nikola', - version='7.3.0', + version='7.3.1', description='A modular, fast, simple, static website generator', long_description=open('README.rst').read(), author='Roberto Alsina and others',