Skip to content

Commit

Permalink
Version 8.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwpolska committed Aug 1, 2022
1 parent c62e311 commit 198470b
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
New in master
New in v8.2.3
=============

Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion docs/extending.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.. description:
.. author: The Nikola Team
:Version: 8.2.2
:Version: 8.2.3
:Author: Roberto Alsina <[email protected]>

.. class:: alert alert-primary float-md-right
Expand Down
Binary file modified docs/man/nikola.1.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/man/nikola.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Nikola
A Static Site and Blog Generator
--------------------------------

:Version: Nikola 8.2.2
:Version: Nikola 8.2.3
:Manual section: 1
:Manual group: User Commands

Expand Down
2 changes: 1 addition & 1 deletion docs/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.. has_math: true
.. author: The Nikola Team
:Version: 8.2.2
:Version: 8.2.3

.. class:: alert alert-primary float-md-right

Expand Down
2 changes: 1 addition & 1 deletion docs/social_buttons.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.. description:
.. author: The Nikola Team
:Version: 8.2.2
:Version: 8.2.3

.. class:: alert alert-primary float-md-right

Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '8.2.2'
version = '8.2.3'
# The full version, including alpha/beta/rc tags.
release = '8.2.2'
release = '8.2.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.. description: Get help using Nikola, or contact us.
.. author: The Nikola Team
:Version: 8.2.2
:Version: 8.2.3

.. class:: alert alert-primary float-md-right

Expand Down
2 changes: 1 addition & 1 deletion docs/template-variables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.. date: 2017-04-13 12:00:00
.. author: The Nikola Team
:Version: 8.2.2
:Version: 8.2.3
:Author: Chris Warrick <[email protected]>

Variables available in templates are listed below.
Expand Down
2 changes: 1 addition & 1 deletion docs/theming.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.. description:
.. author: The Nikola Team
:Version: 8.2.2
:Version: 8.2.3
:Author: Roberto Alsina <[email protected]>

.. class:: alert alert-primary float-md-right
Expand Down
2 changes: 1 addition & 1 deletion nikola/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import os
import sys

__version__ = '8.2.2'
__version__ = '8.2.3'
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))
SHOW_TRACEBACKS = bool(os.getenv('NIKOLA_SHOW_TRACEBACKS'))

Expand Down
2 changes: 1 addition & 1 deletion nikola/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ def load_messages(themes, translations, default_lang, themes_dirs):
for k, v in translation.MESSAGES.items():
if v:
messages[lang][k] = v
del(translation)
del translation
except ImportError as orig:
last_exception = orig
del(english)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def run(self):


setup(name='Nikola',
version='8.2.2',
version='8.2.3',
description='A modular, fast, simple, static website and blog generator',
long_description=long_description,
author='Roberto Alsina and others',
Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: nikola
version: 8.2.2
version: 8.2.3
summary: A static website generator
description: A static website generator
confinement: strict
Expand Down

0 comments on commit 198470b

Please sign in to comment.