diff --git a/CHANGES.txt b/CHANGES.txt index f8d6de22b7..a2c6687b1d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ -New in Master -============= +New in 6.0.3 +============ Features -------- diff --git a/docs/extending.txt b/docs/extending.txt index 035cb48995..683a80b27a 100644 --- a/docs/extending.txt +++ b/docs/extending.txt @@ -1,7 +1,7 @@ Extending Nikola ================ -:Version: 6.0.2 +:Version: 6.0.3 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/man/nikola.1 b/docs/man/nikola.1 index 8515930217..a5613949fd 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" "September 2013" "nikola 6.0.2" "User Commands" +.TH NIKOLA "1" "September 2013" "nikola 6.0.3" "User Commands" .SH NAME -nikola \- manual page for nikola 6.0.2 +nikola \- manual page for nikola 6.0.3 .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:" @@ -63,9 +63,6 @@ apply mincss to the generated site nikola new_post create a new blog post or site page .TP -nikola run -run tasks -.TP nikola serve start the test webserver .TP diff --git a/docs/manual.txt b/docs/manual.txt index 3aac497e47..84826edd68 100644 --- a/docs/manual.txt +++ b/docs/manual.txt @@ -8,7 +8,7 @@ The Nikola Handbook =================== -:Version: 6.0.2 +:Version: 6.0.3 .. class:: alert alert-info pull-right diff --git a/docs/social_buttons.txt b/docs/social_buttons.txt index b6def7ee23..a976eab37f 100644 --- a/docs/social_buttons.txt +++ b/docs/social_buttons.txt @@ -8,7 +8,7 @@ Using Alternative Social Buttons with Nikola ============================================ -:Version: 6.0.2 +:Version: 6.0.3 .. class:: alert alert-info pull-right diff --git a/docs/theming.txt b/docs/theming.txt index 61563ead97..958970f1f4 100644 --- a/docs/theming.txt +++ b/docs/theming.txt @@ -8,7 +8,7 @@ Theming Nikola ============== -:Version: 6.0.2 +:Version: 6.0.3 :Author: Roberto Alsina .. class:: alert alert-info pull-right diff --git a/docs/upgrading-to-v6.txt b/docs/upgrading-to-v6.txt index d65198ab76..b4ba86b256 100644 --- a/docs/upgrading-to-v6.txt +++ b/docs/upgrading-to-v6.txt @@ -8,7 +8,7 @@ Upgrading to v6 =============== -:Version: 6.0.2 +:Version: 6.0.3 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 41b1d7dc1e..b53681069e 100644 --- a/nikola/__init__.py +++ b/nikola/__init__.py @@ -5,4 +5,4 @@ from .nikola import Nikola # NOQA from . import plugins # NOQA -__version__ = "6.0.2" +__version__ = "6.0.3" diff --git a/setup.py b/setup.py index 367807cbbe..15a0c25a78 100755 --- a/setup.py +++ b/setup.py @@ -207,7 +207,7 @@ def find_package_data( return out setup(name='Nikola', - version='6.0.2', + version='6.0.3', description='Static blog/website generator', author='Roberto Alsina and others', author_email='ralsina@netmanagers.com.ar',