Skip to content

Commit 2ac5ace

Browse files
committed
v1.3.7: Nikola v7.6.4 compatibility
Signed-off-by: Chris Warrick <[email protected]>
1 parent 5db9caa commit 2ac5ace

9 files changed

+19
-12
lines changed

CHANGELOG.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
Appendix A. Changelog
33
=====================
44

5-
:Version: 1.3.6
5+
:Version: 1.3.7
6+
7+
1.3.7
8+
* Nikola v7.6.4 compatibility
69

710
1.3.6
811
* Patch URLs for HTTPS sites

CONTRIBUTING.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Appendix A. Contribution rules
55
:Author: Chris Warrick <[email protected]>
66
:Copyright: © 2015, Chris Warrick.
77
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
8-
:Date: 2015-08-17
9-
:Version: 1.3.6
8+
:Date: 2015-08-25
9+
:Version: 1.3.7
1010

1111
.. index:: contributing
1212

coil/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929

3030
__all__ = ['__version__']
3131

32-
__version__ = '1.3.6'
32+
__version__ = '1.3.7'

coil/web.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ def configure_site():
7878

7979
nikola.__main__._RETURN_DOITNIKOLA = True
8080
_dn = nikola.__main__.main([])
81-
_dn.sub_cmds = _dn.get_cmds()
8281
_site = _dn.nikola
82+
_site.init_plugins()
83+
_dn.sub_cmds = _dn.get_cmds()
8384
app.config['NIKOLA_ROOT'] = os.getcwd()
8485
app.config['DEBUG'] = False
8586

docs/CHANGELOG.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
Appendix A. Changelog
33
=====================
44

5-
:Version: 1.3.6
5+
:Version: 1.3.7
6+
7+
1.3.7
8+
* Nikola v7.6.4 compatibility
69

710
1.3.6
811
* Patch URLs for HTTPS sites

docs/CONTRIBUTING.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Appendix A. Contribution rules
55
:Author: Chris Warrick <[email protected]>
66
:Copyright: © 2015, Chris Warrick.
77
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
8-
:Date: 2015-08-17
9-
:Version: 1.3.6
8+
:Date: 2015-08-25
9+
:Version: 1.3.7
1010

1111
.. index:: contributing
1212

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '1.3.6'
58+
version = '1.3.7'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.3.6'
60+
release = '1.3.7'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Nikola>=7.5.1
1+
Nikola>=7.6.4
22
docopt==0.6.2
33
Flask==0.10.1
44
Flask-Bcrypt==0.6.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
dependencies = [l.strip() for l in fh]
88

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

0 commit comments

Comments
 (0)