Skip to content

Commit

Permalink
v7.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto Alsina committed May 12, 2017
1 parent 4f1f5f7 commit fcd8975
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 19 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 v7.8.5
=============

Math support changes
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.4
:Version: 7.8.6
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. 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.4
:Version: Nikola 7.8.6
:Manual section: 1
:Manual group: User Commands

Expand Down
2 changes: 1 addition & 1 deletion 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.4
:Version: 7.8.6

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

Expand Down
6 changes: 3 additions & 3 deletions docs/path_handlers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ index_rss
link://rss => /blog/rss.xml

listing
A link to a listing.
Return a link to a listing.

It will try to use the file name if it's not ambiguous, or the file path.

Expand All @@ -162,7 +162,7 @@ listing


listing_source
A link to the source code for a listing.
Return a link to the source code for a listing.

It will try to use the file name if it's not ambiguous, or the file path.

Expand Down Expand Up @@ -220,7 +220,7 @@ section_index_rss
link://section_index_rss/cars => /cars/rss.xml

slug
A link to a post with given slug, if not ambiguous.
Return a link to a post with given slug, if not ambiguous.

Example:

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.4
:Version: 7.8.6

.. 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.4'
version = '7.8.6'
# The full version, including alpha/beta/rc tags.
release = '7.8.4'
release = '7.8.6'

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

.. 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.4
:Version: 7.8.6
:Author: Chris Warrick <chris@getnikola.com>

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.4
:Version: 7.8.6
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. 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.4'
__version__ = '7.8.6'
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))

from .nikola import Nikola # NOQA
Expand Down
1 change: 1 addition & 0 deletions nikola/data/symlinked.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ docs/sphinx/internals.txt
docs/sphinx/manual.txt
docs/sphinx/path_handlers.txt
docs/sphinx/social_buttons.txt
docs/sphinx/template-variables.txt
docs/sphinx/theming.txt
nikola/data/samplesite/pages/creating-a-theme.rst
nikola/data/samplesite/pages/extending.txt
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.4',
version='7.8.6',
description='A modular, fast, simple, static website and blog generator',
long_description=open('README.rst').read(),
author='Roberto Alsina and others',
Expand Down
4 changes: 2 additions & 2 deletions snapcraft/nikola.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/snap/nikola/current/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'Nikola==7.8.4'
__requires__ = 'Nikola==7.8.4'
# EASY-INSTALL-ENTRY-SCRIPT: 'Nikola==7.8.6'
__requires__ = 'Nikola==7.8.6'
import sys
from pkg_resources import load_entry_point

Expand Down
4 changes: 2 additions & 2 deletions snapcraft/stable/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: nikola
version: 7.8.4
version: 7.8.6
summary: A static website generator
description: A static website generator
confinement: strict
Expand All @@ -16,7 +16,7 @@ parts:
source: script
nikola:
source: git://github.com/getnikola/nikola.git
source-tag: v7.8.4
source-tag: v7.8.6
stage-packages:
- locales
- libc-bin
Expand Down

0 comments on commit fcd8975

Please sign in to comment.