Skip to content

Commit

Permalink
Version 6.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Chris “Kwpolska” Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jan 23, 2014
1 parent e7cf73b commit 42e3d1f
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/extending.txt
Expand Up @@ -8,7 +8,7 @@
Extending Nikola
================

:Version: 6.2.1
:Version: 6.3.0
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. class:: alert alert-info pull-right
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-help.txt
Expand Up @@ -3,7 +3,7 @@
.. date: 1970-01-01 15:00:00
.. description: Get help using Nikola, or contact us.

:Version: 6.2.1
:Version: 6.3.0

.. class:: alert alert-info pull-right

Expand Down
15 changes: 12 additions & 3 deletions docs/man/nikola.1
@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.43.3.
.TH NIKOLA "1" "November 2013" "nikola 6.2.1" "User Commands"
.TH NIKOLA "1" "January 2014" "nikola 6.3.0" "User Commands"
.SH NAME
nikola \- manual page for nikola 6.2.1
nikola \- manual page for nikola 6.3.0
.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:"
Expand All @@ -22,11 +22,14 @@ nikola clean
clean action / remove targets
.TP
nikola console
Start an interactive Python (IPython\->bpython\->plain) console with access to your site and configuration
start an interactive Python console with access to your site
.TP
nikola deploy
deploy the site
.TP
nikola doit_auto
automatically execute tasks when a dependency changes
.TP
nikola dumpdb
dump dependency DB
.TP
Expand Down Expand Up @@ -66,6 +69,9 @@ apply mincss to the generated site
nikola new_post
create a new blog post or site page
.TP
nikola orphans
list all orphans
.TP
nikola run
run tasks
.TP
Expand All @@ -75,6 +81,9 @@ start the test webserver
nikola strace
use strace to list file_deps and targets
.TP
nikola tabcompletion
generate script for tab\-complention
.TP
nikola version
print the Nikola version number
.TP
Expand Down
2 changes: 1 addition & 1 deletion docs/manual.txt
Expand Up @@ -8,7 +8,7 @@
The Nikola Handbook
===================

:Version: 6.2.1
:Version: 6.3.0

.. class:: alert alert-info pull-right

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

:Version: 6.2.1
:Version: 6.3.0

.. class:: alert alert-info pull-right

Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = '6.2.1'
version = '6.3.0'
# The full version, including alpha/beta/rc tags.
release = '6.2.1'
release = '6.3.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/theming.txt
Expand Up @@ -8,7 +8,7 @@
Theming Nikola
==============

:Version: 6.2.1
:Version: 6.3.0
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. class:: alert alert-info pull-right
Expand Down
2 changes: 1 addition & 1 deletion docs/upgrading-to-v6.txt
Expand Up @@ -8,7 +8,7 @@
Upgrading to v6
===============

:Version: 6.2.1
:Version: 6.3.0

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
Expand Down
2 changes: 1 addition & 1 deletion nikola/__init__.py
Expand Up @@ -27,7 +27,7 @@
from __future__ import absolute_import
import os

__version__ = "6.2.1"
__version__ = "6.3.0"
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))

from .nikola import Nikola # NOQA
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -135,7 +135,7 @@ def run(self):


setup(name='Nikola',
version='6.2.1',
version='6.3.0',
description='A modular, fast, simple, static website generator',
long_description=open('README.rst').read(),
author='Roberto Alsina and others',
Expand Down

0 comments on commit 42e3d1f

Please sign in to comment.