Skip to content

Commit c48c386

Browse files
committedMay 5, 2018
Version 8.0.0b1
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 2e8f0cc commit c48c386

14 files changed

+66
-43
lines changed
 

‎CHANGES.txt

+54-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
New in master
2-
=============
1+
New in v8.0.0b1
2+
===============
33

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

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

184+
New in v7.8.15
185+
==============
186+
187+
* Fix behavior for posts not available in default language
188+
(Issues #2956 and #3073)
189+
* Fix behavior of RSS_PATH to do what the documentation
190+
says it does (Issue #3024)
191+
* Use documented dateutil API for time zone list (Issue #3006)
192+
193+
New in v7.8.14
194+
==============
195+
196+
* doit v0.31.0 compatibility (Issue #2980, #3004, v8 backport)
197+
198+
New in v7.8.13
199+
==============
200+
201+
* Add new Thai translation by Narumol Hankrotha and Jean Jordaan
202+
(v8 backport)
203+
* Hide “Incomplete language” message for overrides of complete
204+
languages
205+
* Restore ability to override messages partially
206+
207+
New in v7.8.12
208+
==============
209+
210+
* Fix loading non-default languages
211+
212+
New in v7.8.11
213+
==============
214+
215+
* Make errors in reST display in logs again
216+
* Restore version number to Bootswatch URLs (Issue #2916)
217+
218+
New in v7.8.10
219+
==============
220+
221+
* Fix crashes with Jinja2 themes and tag indexes (Issue #2900)
222+
* Ignore empty tags in HTML metadata reader (Issue #2890)
223+
* Fix crash when compiling empty ``.html`` posts (Issue #2851)
224+
225+
New in v7.8.9
226+
=============
227+
228+
* Restore missing unminified assets
229+
* Make failures to get source commit hash non-fatal in
230+
``github_deploy`` (Issue #2847)
231+
* Fix a bug in HTML meta parsing that crashed on ``<meta>`` tags
232+
without ``name`` (Issue #2835)
233+
* Fix math not showing up in some circumstances (Issue #2841)
234+
184235
New in v7.8.8
185236
=============
186237

‎docs/extending.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Extending Nikola
1010
================
1111

12-
:Version: 7.8.8
12+
:Version: 8.0.0b1
1313
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>
1414

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

‎docs/man/nikola.1.gz

2 Bytes
Binary file not shown.

‎docs/man/nikola.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Nikola
66
A Static Site and Blog Generator
77
--------------------------------
88

9-
:Version: Nikola 7.8.8
9+
:Version: Nikola 8.0.0b1
1010
:Manual section: 1
1111
:Manual group: User Commands
1212

‎docs/manual.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
The Nikola Handbook
1111
===================
1212

13-
:Version: 7.8.8
13+
:Version: 8.0.0b1
1414

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

‎docs/path_handlers.rst

-28
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@ archive
2121

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

24-
archive_atom
25-
Link to archive Atom path, name is the year (archive pages must be indexes).
26-
27-
Example:
28-
29-
link://archive_atom/2013 => /archives/2013/index.atom
30-
3124
author
3225
Link to an author's page.
3326

@@ -196,27 +189,6 @@ rss
196189

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

199-
section_index
200-
Link to the index for a section.
201-
202-
Example:
203-
204-
link://section_index/cars => /cars/index.html
205-
206-
section_index_atom
207-
Link to the Atom index for a section.
208-
209-
Example:
210-
211-
link://section_index_atom/cars => /cars/index.atom
212-
213-
section_index_rss
214-
Link to the RSS feed for a section.
215-
216-
Example:
217-
218-
link://section_index_rss/cars => /cars/rss.xml
219-
220192
slug
221193
Return a link to a post with given slug, if not ambiguous.
222194

‎docs/social_buttons.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Using Alternative Social Buttons with Nikola
1010
============================================
1111

12-
:Version: 7.8.8
12+
:Version: 8.0.0b1
1313

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

‎docs/sphinx/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '8.0.0.dev0'
54+
version = '8.0.0b1'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '8.0.0.dev0'
56+
release = '8.0.0b1'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

‎docs/support.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.. description: Get help using Nikola, or contact us.
55
.. author: The Nikola Team
66
7-
:Version: 7.8.8
7+
:Version: 8.0.0b1
88

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

‎docs/template-variables.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. date: 2017-04-13 12:00:00
44
.. author: The Nikola Team
55
6-
:Version: 7.8.8
6+
:Version: 8.0.0b1
77
:Author: Chris Warrick <chris@getnikola.com>
88

99
Variables available in templates are listed below.

‎docs/theming.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Theming Nikola
1010
==============
1111

12-
:Version: 7.8.8
12+
:Version: 8.0.0b1
1313
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>
1414

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

‎nikola/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import os
3030
import sys
3131

32-
__version__ = '8.0.0.dev0'
32+
__version__ = '8.0.0b1'
3333
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))
3434
SHOW_TRACEBACKS = bool(os.getenv('NIKOLA_SHOW_TRACEBACKS'))
3535

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def run(self):
9696

9797

9898
setup(name='Nikola',
99-
version='8.0.0.dev0',
99+
version='8.0.0b1',
100100
description='A modular, fast, simple, static website and blog generator',
101101
long_description=open('README.rst').read(),
102102
author='Roberto Alsina and others',

‎snapcraft.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: nikola
2-
version: 8-dev
2+
version: 8.0.0b1
33
summary: A static website generator
44
description: A static website generator
55
confinement: strict

0 commit comments

Comments
 (0)
Please sign in to comment.