Skip to content

Commit

Permalink
Version 7.8.7
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <[email protected]>
  • Loading branch information
Kwpolska committed Jun 5, 2017
1 parent 105581d commit c9e4caa
Show file tree
Hide file tree
Showing 13 changed files with 40 additions and 17 deletions.
24 changes: 23 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
New in master
New in v7.8.7
=============

In an effort to improve interoperability with other static site
generators, make importing data easier, and help with world
domination, Nikola v7.8.7 ships with support for the following
metadata formats:

* reST-style comments (``.. name: value`` — default format)
* Two-file format (reST-style comments or 7-line)
* Jupyter Notebook metadata
* YAML, between ``---`` (Jekyll, Hugo)
* TOML, between ``+++`` (Hugo)
* reST docinfo (Pelican)
* Markdown metadata extension (Pelican)

In addition, Markdown is now enabled and required by default.
More details: <https://getnikola.com/handbook.html#metadata-formats>

The release also fixes two important bugs, one that crashes when
trying to detect locale in some edge cases, and another which made
some themes quietly leak template files. If you’re using a
Jinja2-based theme that does not have its own ``parent`` file, please
force a rebuild (``nikola build -a``).

Features
--------

Expand Down
2 changes: 1 addition & 1 deletion docs/extending.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Extending Nikola
================

:Version: 7.8.6
:Version: 7.8.7
:Author: Roberto Alsina <[email protected]>

.. class:: alert alert-info pull-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 7.8.6
:Version: Nikola 7.8.7
:Manual section: 1
:Manual group: User Commands

Expand Down
11 changes: 6 additions & 5 deletions docs/manual.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
The Nikola Handbook
===================

:Version: 7.8.6
:Version: 7.8.7

.. class:: alert alert-info pull-right

Expand Down Expand Up @@ -2097,10 +2097,11 @@ filters.add_header_permalinks
This is required if you use a custom theme that does not use ``"e-content entry-content"`` as a class for post and page contents.

.. code:: python
# Default value:
HEADER_PERMALINKS_XPATH_LIST = ['*//div[@class="e-content entry-content"]//{hx}']
# Include *every* header (not recommended):
# HEADER_PERMALINKS_XPATH_LIST = ['*//{hx}']

# Default value:
HEADER_PERMALINKS_XPATH_LIST = ['*//div[@class="e-content entry-content"]//{hx}']
# Include *every* header (not recommended):
# HEADER_PERMALINKS_XPATH_LIST = ['*//{hx}']


filters.deduplicate_ids
Expand Down
2 changes: 1 addition & 1 deletion docs/social_buttons.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Using Alternative Social Buttons with Nikola
============================================

:Version: 7.8.6
:Version: 7.8.7

.. class:: alert alert-info pull-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 @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '7.8.6'
version = '7.8.7'
# The full version, including alpha/beta/rc tags.
release = '7.8.6'
release = '7.8.7'

# 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: 7.8.6
:Version: 7.8.7

.. class:: alert alert-info pull-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: 7.8.6
:Version: 7.8.7
:Author: Chris Warrick <[email protected]>

Variables available in templates are listed below.
Expand Down
2 changes: 1 addition & 1 deletion docs/theming.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Theming Nikola
==============

:Version: 7.8.6
:Version: 7.8.7
:Author: Roberto Alsina <[email protected]>

.. class:: alert alert-info pull-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 @@
from __future__ import absolute_import
import os

__version__ = '7.8.6'
__version__ = '7.8.7'
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))

from .nikola import Nikola # NOQA
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def run(self):


setup(name='Nikola',
version='7.8.6',
version='7.8.7',
description='A modular, fast, simple, static website and blog generator',
long_description=open('README.rst').read(),
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: 7.8.6
version: 7.8.7
summary: A static website generator
description: A static website generator
confinement: strict
Expand Down

0 comments on commit c9e4caa

Please sign in to comment.