Skip to content

Commit

Permalink
Version 8.0.0
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 10, 2018
1 parent c21fe9c commit c169216
Show file tree
Hide file tree
Showing 23 changed files with 15 additions and 864 deletions.
2 changes: 1 addition & 1 deletion docs/extending.rst
Expand Up @@ -9,7 +9,7 @@
Extending Nikola
================

:Version: 8.0.0rc1
:Version: 8.0.0
: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 8.0.0rc1
:Version: Nikola 8.0.0
: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: 8.0.0rc1
:Version: 8.0.0

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

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: 8.0.0rc1
:Version: 8.0.0

.. 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.0rc1'
version = '8.0.0'
# The full version, including alpha/beta/rc tags.
release = '8.0.0rc1'
release = '8.0.0'

# 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: 8.0.0rc1
:Version: 8.0.0

.. 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: 8.0.0rc1
:Version: 8.0.0
: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: 8.0.0rc1
:Version: 8.0.0
: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.0rc1'
__version__ = '8.0.0'
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))
SHOW_TRACEBACKS = bool(os.getenv('NIKOLA_SHOW_TRACEBACKS'))

Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/index.tmpl
Expand Up @@ -41,7 +41,7 @@
<a href="{{ post.permalink() }}" rel="bookmark">
<time class="published dt-published" datetime="{{ post.formatted_date('webiso') }}" itemprop="datePublished" title="{{ post.formatted_date(date_format)|e }}">{{ post.formatted_date(date_format)|e }}</time>
{% if post.updated and post.updated != post.date %}
<span class="updated">({{ messages("updated") }}
<span class="updated"> ({{ messages("updated") }}
<time class="dt-updated" datetime="{{ post.formatted_updated('webiso') }}" itemprop="dateUpdated" title="{{ post.formatted_updated(date_format)|e }}">{{ post.formatted_updated(date_format)|e }}</time>)</span>
{% endif %}
</a>
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/post_header.tmpl
Expand Up @@ -42,7 +42,7 @@
<a href="{{ post.permalink() }}" rel="bookmark">
<time class="published dt-published" datetime="{{ post.formatted_date('webiso') }}" itemprop="datePublished" title="{{ post.formatted_date(date_format)|e }}">{{ post.formatted_date(date_format)|e }}</time>
{% if post.updated and post.updated != post.date %}
<span class="updated">({{ messages("updated") }}
<span class="updated"> ({{ messages("updated") }}
<time class="updated dt-updated" datetime="{{ post.formatted_updated('webiso') }}" itemprop="dateUpdated" title="{{ post.formatted_updated(date_format)|e }}">{{ post.formatted_updated(date_format)|e }}</time>)</span>
{% endif %}
</a>
Expand Down
49 changes: 0 additions & 49 deletions nikola/data/themes/base/messages/messages_br.py

This file was deleted.

49 changes: 0 additions & 49 deletions nikola/data/themes/base/messages/messages_fil.py

This file was deleted.

49 changes: 0 additions & 49 deletions nikola/data/themes/base/messages/messages_si_lk.py

This file was deleted.

49 changes: 0 additions & 49 deletions nikola/data/themes/base/messages/messages_tl.py

This file was deleted.

2 changes: 1 addition & 1 deletion nikola/data/themes/bootblog4-jinja/templates/index.tmpl
Expand Up @@ -41,7 +41,7 @@
<a href="{{ post.permalink() }}" rel="bookmark">
<time class="published dt-published" datetime="{{ post.formatted_date('webiso') }}" itemprop="datePublished" title="{{ post.formatted_date(date_format)|e }}">{{ post.formatted_date(date_format)|e }}</time>
{% if post.updated and post.updated != post.date %}
<span class="updated">({{ messages("updated") }}
<span class="updated"> ({{ messages("updated") }}
<time class="dt-updated" datetime="{{ post.formatted_updated('webiso') }}" itemprop="dateUpdated" title="{{ post.formatted_updated(date_format)|e }}">{{ post.formatted_updated(date_format)|e }}</time>)</span>
{% endif %}
</a>
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.0rc1',
version='8.0.0',
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.0.0rc1
version: 8.0.0
summary: A static website generator
description: A static website generator
confinement: strict
Expand Down

0 comments on commit c169216

Please sign in to comment.