Skip to content

Commit 7987770

Browse files
committedJan 13, 2015
updated version to 7.3.0
1 parent dc78172 commit 7987770

10 files changed

+16
-13
lines changed
 

‎CHANGES.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
New in master
1+
New in v7.3.0
22
=============
33

44
Features

‎docs/extending.txt

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

11-
:Version: 7.2.0
11+
:Version: 7.3.0
1212
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>
1313

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

‎docs/getting-help.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. date: 1970-01-01 15:00:00
44
.. description: Get help using Nikola, or contact us.
55

6-
:Version: 7.2.0
6+
:Version: 7.3.0
77

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

‎docs/man/nikola.1

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
2-
.TH NIKOLA "1" "November 2014" "nikola 7.2.0" "User Commands"
1+
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.2.
2+
.TH NIKOLA "1" "January 2015" "nikola 7.3.0" "User Commands"
33
.SH NAME
4-
nikola \- manual page for nikola 7.2.0
4+
nikola \- manual page for nikola 7.3.0
55
.SH DESCRIPTION
66
Nikola is a tool to create static websites and blogs. For full documentation and more information, please visit http://getnikola.com/
77
.SS "Available commands:"
@@ -37,14 +37,17 @@ nikola forget
3737
clear successful run status from internal DB
3838
.TP
3939
nikola github_deploy
40-
deploy the site to GitHub pages
40+
deploy the site to GitHub Pages
4141
.TP
4242
nikola help
4343
show help
4444
.TP
4545
nikola ignore
4646
ignore task (skip) on subsequent runs
4747
.TP
48+
nikola import_gplus
49+
import a Tumblr blog
50+
.TP
4851
nikola import_wordpress
4952
import a WordPress dump
5053
.TP

‎docs/manual.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
The Nikola Handbook
99
===================
1010

11-
:Version: 7.2.0
11+
:Version: 7.3.0
1212

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

‎docs/social_buttons.txt

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

11-
:Version: 7.2.0
11+
:Version: 7.3.0
1212

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

‎docs/theming.txt

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

11-
:Version: 7.2.0
11+
:Version: 7.3.0
1212
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>
1313

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

‎docs/upgrading-to-v6.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Upgrading to v6
99
===============
1010

11-
:Version: 7.2.0
11+
:Version: 7.3.0
1212

1313
.. class:: lead
1414

‎nikola/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from __future__ import absolute_import
2828
import os
2929

30-
__version__ = "7.2.0"
30+
__version__ = "7.3.0"
3131
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))
3232

3333
from .nikola import Nikola # NOQA

‎setup.py

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

141141

142142
setup(name='Nikola',
143-
version='7.2.0',
143+
version='7.3.0',
144144
description='A modular, fast, simple, static website generator',
145145
long_description=open('README.rst').read(),
146146
author='Roberto Alsina and others',

0 commit comments

Comments
 (0)
Please sign in to comment.