From fbcc17b581fa3466e38eff27acef45c044767b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20=E2=80=9CKwpolska=E2=80=9D=20Warrick?= Date: Fri, 1 Nov 2013 10:17:48 +0100 Subject: [PATCH] Version 6.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a partially-unplanned bugfix release to fix issues with locales and address some more bugs, also adding a few little features. Signed-off-by: Chris “Kwpolska” Warrick --- docs/extending.txt | 2 +- docs/man/nikola.1 | 4 ++-- docs/manual.txt | 2 +- docs/social_buttons.txt | 2 +- docs/theming.txt | 2 +- docs/upgrading-to-v6.txt | 2 +- nikola/__init__.py | 2 +- setup.py | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/extending.txt b/docs/extending.txt index ee66dff71b..f5c7aae7d9 100644 --- a/docs/extending.txt +++ b/docs/extending.txt @@ -8,7 +8,7 @@ Extending Nikola ================ -:Version: 6.2.0 +:Version: 6.2.1 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/man/nikola.1 b/docs/man/nikola.1 index 1a0050f03e..9385a2a597 100644 --- a/docs/man/nikola.1 +++ b/docs/man/nikola.1 @@ -1,7 +1,7 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.43.3. -.TH NIKOLA "1" "October 2013" "nikola 6.2.0" "User Commands" +.TH NIKOLA "1" "November 2013" "nikola 6.2.1" "User Commands" .SH NAME -nikola \- manual page for nikola 6.2.0 +nikola \- manual page for nikola 6.2.1 .SH DESCRIPTION Nikola is a tool to create static websites and blogs. For full documentation and more information, please visit http://getnikola.com .SS "Available commands:" diff --git a/docs/manual.txt b/docs/manual.txt index 3509019b14..c1862605dc 100644 --- a/docs/manual.txt +++ b/docs/manual.txt @@ -8,7 +8,7 @@ The Nikola Handbook =================== -:Version: 6.2.0 +:Version: 6.2.1 .. class:: alert alert-info pull-right diff --git a/docs/social_buttons.txt b/docs/social_buttons.txt index 223f1adcbf..efbf9df840 100644 --- a/docs/social_buttons.txt +++ b/docs/social_buttons.txt @@ -8,7 +8,7 @@ Using Alternative Social Buttons with Nikola ============================================ -:Version: 6.2.0 +:Version: 6.2.1 .. class:: alert alert-info pull-right diff --git a/docs/theming.txt b/docs/theming.txt index cdb2462030..99492abac0 100644 --- a/docs/theming.txt +++ b/docs/theming.txt @@ -8,7 +8,7 @@ Theming Nikola ============== -:Version: 6.2.0 +:Version: 6.2.1 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/upgrading-to-v6.txt b/docs/upgrading-to-v6.txt index 172e6d37e9..386d6abea5 100644 --- a/docs/upgrading-to-v6.txt +++ b/docs/upgrading-to-v6.txt @@ -8,7 +8,7 @@ Upgrading to v6 =============== -:Version: 6.2.0 +:Version: 6.2.1 Nikola tries fairly hard to be compatible between versions. However, there were a few areas which were getting clunky, and needed fxing. So, here's what you may diff --git a/nikola/__init__.py b/nikola/__init__.py index 295219ba86..a04e3b9d08 100644 --- a/nikola/__init__.py +++ b/nikola/__init__.py @@ -5,4 +5,4 @@ from .nikola import Nikola # NOQA from . import plugins # NOQA -__version__ = "6.2.0" +__version__ = "6.2.1" diff --git a/setup.py b/setup.py index 01f0bf7952..3cf70eb8bf 100755 --- a/setup.py +++ b/setup.py @@ -229,7 +229,7 @@ def find_package_data( setup(name='Nikola', - version='6.2.0', + version='6.2.1', description='A modular, fast, simple, static website generator', long_description=open('README.rst').read(), author='Roberto Alsina and others',