Skip to content

Commit

Permalink
Merge branch 'release/1.3.7'
Browse files Browse the repository at this point in the history
fix #40
  • Loading branch information
Kwpolska committed Aug 25, 2015
2 parents 1abf61a + 2ac5ace commit 74574de
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -2,7 +2,10 @@
Appendix A. Changelog
=====================

:Version: 1.3.6
:Version: 1.3.7

1.3.7
* Nikola v7.6.4 compatibility

1.3.6
* Patch URLs for HTTPS sites
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Expand Up @@ -5,8 +5,8 @@ Appendix A. Contribution rules
:Author: Chris Warrick <chris@chriswarrick.com>
:Copyright: © 2015, Chris Warrick.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2015-08-17
:Version: 1.3.6
:Date: 2015-08-25
:Version: 1.3.7

.. index:: contributing

Expand Down
2 changes: 1 addition & 1 deletion coil/__init__.py
Expand Up @@ -29,4 +29,4 @@

__all__ = ['__version__']

__version__ = '1.3.6'
__version__ = '1.3.7'
3 changes: 2 additions & 1 deletion coil/web.py
Expand Up @@ -78,8 +78,9 @@ def configure_site():

nikola.__main__._RETURN_DOITNIKOLA = True
_dn = nikola.__main__.main([])
_dn.sub_cmds = _dn.get_cmds()
_site = _dn.nikola
_site.init_plugins()
_dn.sub_cmds = _dn.get_cmds()
app.config['NIKOLA_ROOT'] = os.getcwd()
app.config['DEBUG'] = False

Expand Down
5 changes: 4 additions & 1 deletion docs/CHANGELOG.rst
Expand Up @@ -2,7 +2,10 @@
Appendix A. Changelog
=====================

:Version: 1.3.6
:Version: 1.3.7

1.3.7
* Nikola v7.6.4 compatibility

1.3.6
* Patch URLs for HTTPS sites
Expand Down
4 changes: 2 additions & 2 deletions docs/CONTRIBUTING.rst
Expand Up @@ -5,8 +5,8 @@ Appendix A. Contribution rules
:Author: Chris Warrick <chris@chriswarrick.com>
:Copyright: © 2015, Chris Warrick.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2015-08-17
:Version: 1.3.6
:Date: 2015-08-25
:Version: 1.3.7

.. index:: contributing

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.3.6'
version = '1.3.7'
# The full version, including alpha/beta/rc tags.
release = '1.3.6'
release = '1.3.7'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
Nikola>=7.5.1
Nikola>=7.6.4
docopt==0.6.2
Flask==0.10.1
Flask-Bcrypt==0.6.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -7,7 +7,7 @@
dependencies = [l.strip() for l in fh]

setup(name='coil',
version='1.3.6',
version='1.3.7',
description='A user-friendly CMS frontend for Nikola.',
keywords='coil,nikola,cms',
author='Chris Warrick, Roberto Alsina, Henry Hirsch et al.',
Expand Down

0 comments on commit 74574de

Please sign in to comment.