Skip to content

Commit

Permalink
Version 8.0.0b1
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed May 5, 2018
1 parent 2e8f0cc commit c48c386
Show file tree
Hide file tree
Showing 14 changed files with 66 additions and 43 deletions.
57 changes: 54 additions & 3 deletions CHANGES.txt
@@ -1,5 +1,5 @@
New in master
=============
New in v8.0.0b1
===============

Important compatibility changes
-------------------------------
Expand Down Expand Up @@ -158,7 +158,7 @@ Removed conf.py settings
The following settings have been removed. Nikola will now always
behave as if the value was what is displayed afer the setting name.

* ``FEED_PREVIEWIMAGE = True``
* ``FEED_PREVIEWIMAGE = True``
* ``SITEMAP_INCLUDE_FILELESS_DIRS = True``
* ``USE_OPEN_GRAPH = True``
* ``USE_BASE_TAG = False``
Expand All @@ -181,6 +181,57 @@ Removed features
* Atom feeds are now limited to one page (Issue #3016)
* Removed sections (replaced by improved categories) (Issue #2833)

New in v7.8.15
==============

* Fix behavior for posts not available in default language
(Issues #2956 and #3073)
* Fix behavior of RSS_PATH to do what the documentation
says it does (Issue #3024)
* Use documented dateutil API for time zone list (Issue #3006)

New in v7.8.14
==============

* doit v0.31.0 compatibility (Issue #2980, #3004, v8 backport)

New in v7.8.13
==============

* Add new Thai translation by Narumol Hankrotha and Jean Jordaan
(v8 backport)
* Hide “Incomplete language” message for overrides of complete
languages
* Restore ability to override messages partially

New in v7.8.12
==============

* Fix loading non-default languages

New in v7.8.11
==============

* Make errors in reST display in logs again
* Restore version number to Bootswatch URLs (Issue #2916)

New in v7.8.10
==============

* Fix crashes with Jinja2 themes and tag indexes (Issue #2900)
* Ignore empty tags in HTML metadata reader (Issue #2890)
* Fix crash when compiling empty ``.html`` posts (Issue #2851)

New in v7.8.9
=============

* Restore missing unminified assets
* Make failures to get source commit hash non-fatal in
``github_deploy`` (Issue #2847)
* Fix a bug in HTML meta parsing that crashed on ``<meta>`` tags
without ``name`` (Issue #2835)
* Fix math not showing up in some circumstances (Issue #2841)

New in v7.8.8
=============

Expand Down
2 changes: 1 addition & 1 deletion docs/extending.rst
Expand Up @@ -9,7 +9,7 @@
Extending Nikola
================

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

.. 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
Expand Up @@ -6,7 +6,7 @@ Nikola
A Static Site and Blog Generator
--------------------------------

:Version: Nikola 7.8.8
:Version: Nikola 8.0.0b1
:Manual section: 1
:Manual group: User Commands

Expand Down
2 changes: 1 addition & 1 deletion docs/manual.rst
Expand Up @@ -10,7 +10,7 @@
The Nikola Handbook
===================

:Version: 7.8.8
:Version: 8.0.0b1

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

Expand Down
28 changes: 0 additions & 28 deletions docs/path_handlers.rst
Expand Up @@ -21,13 +21,6 @@ archive

link://archive/2013 => /archives/2013/index.html

archive_atom
Link to archive Atom path, name is the year (archive pages must be indexes).

Example:

link://archive_atom/2013 => /archives/2013/index.atom

author
Link to an author's page.

Expand Down Expand Up @@ -196,27 +189,6 @@ rss

link://rss => /blog/rss.xml

section_index
Link to the index for a section.

Example:

link://section_index/cars => /cars/index.html

section_index_atom
Link to the Atom index for a section.

Example:

link://section_index_atom/cars => /cars/index.atom

section_index_rss
Link to the RSS feed for a section.

Example:

link://section_index_rss/cars => /cars/rss.xml

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

Expand Down
2 changes: 1 addition & 1 deletion docs/social_buttons.rst
Expand Up @@ -9,7 +9,7 @@
Using Alternative Social Buttons with Nikola
============================================

:Version: 7.8.8
:Version: 8.0.0b1

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

Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '8.0.0.dev0'
version = '8.0.0b1'
# The full version, including alpha/beta/rc tags.
release = '8.0.0.dev0'
release = '8.0.0b1'

# 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
Expand Up @@ -4,7 +4,7 @@
.. description: Get help using Nikola, or contact us.
.. author: The Nikola Team
:Version: 7.8.8
:Version: 8.0.0b1

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

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

Variables available in templates are listed below.
Expand Down
2 changes: 1 addition & 1 deletion docs/theming.rst
Expand Up @@ -9,7 +9,7 @@
Theming Nikola
==============

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

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

__version__ = '8.0.0.dev0'
__version__ = '8.0.0b1'
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))
SHOW_TRACEBACKS = bool(os.getenv('NIKOLA_SHOW_TRACEBACKS'))

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -96,7 +96,7 @@ def run(self):


setup(name='Nikola',
version='8.0.0.dev0',
version='8.0.0b1',
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
@@ -1,5 +1,5 @@
name: nikola
version: 8-dev
version: 8.0.0b1
summary: A static website generator
description: A static website generator
confinement: strict
Expand Down

0 comments on commit c48c386

Please sign in to comment.