diff --git a/CHANGES.txt b/CHANGES.txt index ac67590f71..28b11946fb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -New in master +New in v7.7.5 ============= Features @@ -17,17 +17,20 @@ Features * Hugo-like shortcodes (Issue #1707) * New Galician translation * New facilities for data persistence and data caching (Issues #2209 and #2009) +* (internal) allow ``scripts/jinjify.py`` usage with scripts (Issue #2240) Bugfixes -------- +* Fix some rebuilds with indexes and galleries +* Make state files work on Python 3 * Don’t attempt to create redirects for URLs with query strings in WordPress imports if the site is in a subdirectory (Issue #2224) * Avoid some random file rebuilds (Issue #2220) -* Honor ``MATHJAX_CONFIG`` +* Honor ``MATHJAX_CONFIG`` setting * Display tags and archives in a unified format, with the date on the left, instead of a misplaced dash in tags (Issue #2212) -* Decide is_mathjax based on current language tags (Issue #2205) +* Decide ``is_mathjax`` based on current language tags (Issue #2205) * Don't duplicate images in flowr when resizing page (Issue #2202) New in v7.7.4 diff --git a/docs/extending.txt b/docs/extending.txt index c2c5769ca6..f8223fab58 100644 --- a/docs/extending.txt +++ b/docs/extending.txt @@ -9,7 +9,7 @@ Extending Nikola ================ -:Version: 7.7.4 +:Version: 7.7.5 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/man/nikola.1.gz b/docs/man/nikola.1.gz index d9cc615762..b5d67907f8 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 8edca34cf1..0e0b7e72a6 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.7.4 +:Version: Nikola v7.7.5 :Manual section: 1 :Manual group: User Commands diff --git a/docs/manual.txt b/docs/manual.txt index 0f60788fbc..9a9d8c18e4 100644 --- a/docs/manual.txt +++ b/docs/manual.txt @@ -9,7 +9,7 @@ The Nikola Handbook =================== -:Version: 7.7.4 +:Version: 7.7.5 .. class:: alert alert-info pull-right diff --git a/docs/social_buttons.txt b/docs/social_buttons.txt index 6918401d74..a708045043 100644 --- a/docs/social_buttons.txt +++ b/docs/social_buttons.txt @@ -9,7 +9,7 @@ Using Alternative Social Buttons with Nikola ============================================ -:Version: 7.7.4 +:Version: 7.7.5 .. class:: alert alert-info pull-right diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index 54f6492cdb..af8a11640e 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '7.7.4' +version = '7.7.5' # The full version, including alpha/beta/rc tags. -release = '7.7.4' +release = '7.7.5' # 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 d679e6812b..d591d2605a 100644 --- a/docs/theming.txt +++ b/docs/theming.txt @@ -9,7 +9,7 @@ Theming Nikola ============== -:Version: 7.7.4 +:Version: 7.7.5 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/nikola/__init__.py b/nikola/__init__.py index c2710ede7a..c93bc9b836 100644 --- a/nikola/__init__.py +++ b/nikola/__init__.py @@ -29,7 +29,7 @@ from __future__ import absolute_import import os -__version__ = "7.7.4" +__version__ = "7.7.5" DEBUG = bool(os.getenv('NIKOLA_DEBUG')) from .nikola import Nikola # NOQA diff --git a/setup.py b/setup.py index cc3d80cf0b..0b9bed7603 100755 --- a/setup.py +++ b/setup.py @@ -113,7 +113,7 @@ def run(self): setup(name='Nikola', - version='7.7.4', + version='7.7.5', description='A modular, fast, simple, static website and blog generator', long_description=open('README.rst').read(), author='Roberto Alsina and others',