Skip to content

Commit

Permalink
Version 8.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Sep 30, 2018
1 parent 6f72ab7 commit 6fd224a
Show file tree
Hide file tree
Showing 13 changed files with 88 additions and 37 deletions.
51 changes: 51 additions & 0 deletions posts/nikola-v801-is-out.txt
@@ -0,0 +1,51 @@
.. title: Nikola v8.0.1 is out!
.. slug: nikola-v801-is-out
.. date: 2018-09-30 17:53:13 UTC
.. tags: nikola, planet, python, programming, release
.. category:
.. link:
.. description:
.. type: text
.. author: Chris Warrick

On behalf of the Nikola team, I am pleased to announce the immediate
availability of Nikola v8.0.1. Some bugs were fixed; more importantly,
we pinned down the Markdown package version due to incompatibilities.

What is Nikola?
===============

Nikola is a static site and blog generator, written in Python.
It can use Mako and Jinja2 templates, and input in many popular markup
formats, such as reStructuredText and Markdown — and can even turn
Jupyter Notebooks into blog posts! It also supports image galleries,
and is multilingual. Nikola is flexible, and page builds are extremely
fast, courtesy of doit (which is rebuilding only what has been changed).

Find out more at the website: https://getnikola.com/

Downloads
=========

Install using ``pip install Nikola``. (Python 3-only since v8.0.0.)

Changes
=======

* Not compatible with Markdown 3.x yet, this release pins the
requirement down to 2.x (until we get 3.x support done)

Features
--------

* Make URL displayed by ``nikola auto`` and ``nikola serve`` clickable
(Issue #3166)

Bugfixes
--------

* Pandoc compiler was passing deleted argument (Issue #3171)
* Make ``nikola version --check`` work again (Issue #3170)
* Set logging level for reST to warning in order to limit noise
* Fix docinfo removal for sites that use reST docinfo metadata
(Issue #3167)
2 changes: 1 addition & 1 deletion state_data.json
@@ -1,3 +1,3 @@
{
"last_deploy": "2018-09-21T13:44:12.170723"
"last_deploy": "2018-09-30T17:59:43.606606"
}
21 changes: 21 additions & 0 deletions stories/CHANGES.txt
@@ -1,3 +1,24 @@
New in v8.0.1
=============

* Not compatible with Markdown 3.x yet, this release pins the
requirement down to 2.x (until we get 3.x support done)

Features
--------

* Make URL displayed by ``nikola auto`` and ``nikola serve`` clickable
(Issue #3166)

Bugfixes
--------

* Pandoc compiler was passing deleted argument (Issue #3171)
* Make ``nikola version --check`` work again (Issue #3170)
* Set logging level for reST to warning in order to limit noise
* Fix docinfo removal for sites that use reST docinfo metadata
(Issue #3167)

New in v8.0.0
=============

Expand Down
4 changes: 2 additions & 2 deletions stories/conf.rst
@@ -1,11 +1,11 @@
.. title: Nikola v8.0.0 configuration file
.. title: Nikola v8.0.1 configuration file
.. slug: conf
.. date: 2014-11-08 18:51:30 UTC
.. description: The Nikola configuration file.
.. type: text
.. author: The Nikola Team
The default config file for Nikola v8.0.0 is reproduced below.
The default config file for Nikola v8.0.1 is reproduced below.

.. raw:: html

Expand Down
5 changes: 1 addition & 4 deletions stories/creating-a-site.rst
@@ -1,14 +1,11 @@
.. title: Creating a Site (Not a Blog) with Nikola
.. slug: creating-a-site-not-a-blog-with-nikola
.. date: 2015-01-10 10:00:00 UTC
.. tags: nikola, python
.. link:
.. description:
.. title: Creating a Site (Not a Blog) with Nikola
.. author: The Nikola Team
Creating a Site (Not a Blog) with Nikola
========================================

.. class:: lead

One of the most frequent questions I get about Nikola is “but how do
Expand Down
3 changes: 0 additions & 3 deletions stories/creating-a-theme.rst
Expand Up @@ -7,9 +7,6 @@
.. description:
.. type: text
Creating a Theme
================

Nikola is a static site and blog generator. So is Jekyll. While I like what we have done with Nikola,
I do admit that Jekyll (and others!) have many more, and nicer themes than Nikola does.

Expand Down
5 changes: 1 addition & 4 deletions stories/extending.rst
Expand Up @@ -6,10 +6,7 @@
.. description:
.. author: The Nikola Team
Extending Nikola
================

:Version: 8.0.0
:Version: 8.0.1
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. class:: alert alert-primary float-md-right
Expand Down
5 changes: 1 addition & 4 deletions stories/internals.rst
Expand Up @@ -6,9 +6,6 @@
.. description:
.. author: The Nikola Team
Nikola Internals
================

.. class:: lead

When trying to guide someone into adding a feature in Nikola, it hit me that
Expand Down Expand Up @@ -97,7 +94,7 @@ posts are added into RSS feeds and pages are not. All of them are in a list call

When you are creating a task that needs the list of posts and/or pages (for example,
the RSS creation plugin) on task execution time, your plugin should call ``self.site.scan_posts()``
in ``gen_tasks`` to ensure the timeline is created and available in
in ``gen_tasks`` to ensure the timeline is created and available in
``self.site.timeline``. You should not modify the timeline, because it will cause consistency issues.

.. sidebar:: scan_posts
Expand Down
13 changes: 5 additions & 8 deletions stories/manual.rst
Expand Up @@ -7,10 +7,7 @@
.. has_math: true
.. author: The Nikola Team
The Nikola Handbook
===================

:Version: 8.0.0
:Version: 8.0.1

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

Expand Down Expand Up @@ -1666,10 +1663,10 @@ For Jinja2:
Adding Files
------------

Any files you want to be in ``output/`` but are not generated by Nikola (for example,
``favicon.ico``) just put it in ``files/``. Everything there is copied into
``output`` by the ``copy_files`` task. Remember that you can't have files that collide
with files Nikola generates (it will give an error).
Any files you want to be in ``output/`` but are not generated by Nikola (for
example, ``favicon.ico``) should be placed in ``files/``. Remember that you
can't have files that collide with files Nikola generates (it will give an
error).

.. admonition:: Important

Expand Down
7 changes: 2 additions & 5 deletions stories/social_buttons.rst
@@ -1,15 +1,12 @@
.. title: Alternative Social Buttons
.. title: Using Alternative Social Buttons with Nikola
.. slug: social_buttons
.. date: 2013-08-19 23:00:00 UTC-03:00
.. tags:
.. link:
.. description:
.. author: The Nikola Team
Using Alternative Social Buttons with Nikola
============================================

:Version: 8.0.0
:Version: 8.0.1

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

Expand Down
2 changes: 1 addition & 1 deletion stories/support.rst
Expand Up @@ -4,7 +4,7 @@
.. description: Get help using Nikola, or contact us.
.. author: The Nikola Team
:Version: 8.0.0
:Version: 8.0.1

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

Expand Down
2 changes: 1 addition & 1 deletion stories/template-variables.rst
Expand Up @@ -3,7 +3,7 @@
.. date: 2017-04-13 12:00:00
.. author: The Nikola Team
:Version: 8.0.0
:Version: 8.0.1
:Author: Chris Warrick <chris@getnikola.com>

Variables available in templates are listed below.
Expand Down
5 changes: 1 addition & 4 deletions stories/theming.rst
Expand Up @@ -6,10 +6,7 @@
.. description:
.. author: The Nikola Team
Theming Nikola
==============

:Version: 8.0.0
:Version: 8.0.1
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

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

0 comments on commit 6fd224a

Please sign in to comment.