Skip to content

Commit 0ceaeca

Browse files
committed
v1.3.1: use rq from pypi
Signed-off-by: Chris Warrick <[email protected]>
1 parent a1c0f4d commit 0ceaeca

File tree

6 files changed

+82
-8
lines changed

6 files changed

+82
-8
lines changed

CHANGELOG.rst

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Appendix A. Changelog
33
=====================
44

5+
:Version: 1.3.1
6+
57
v1.3.0
68
------
79

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.2.0'
32+
__version__ = '1.3.1'

docs/CHANGELOG.rst

-1
This file was deleted.

docs/CHANGELOG.rst

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
=====================
2+
Appendix A. Changelog
3+
=====================
4+
5+
:Version: 1.3.1
6+
7+
v1.3.0
8+
------
9+
10+
* Python 3 support
11+
12+
v1.2.2
13+
------
14+
15+
* Don’t repeat Nikola dependencies to decrease maintenance burden
16+
17+
v1.2.1
18+
------
19+
20+
* Specify deps in ``setup.py``
21+
22+
v1.2.0
23+
------
24+
25+
* Added support for a Limited mode, which does not require Redis and rq
26+
* Nikola v7.4.0 compatibility
27+
28+
v1.1.0
29+
------
30+
31+
* Changed hashing mechanism to sha256 + bcrypt.
32+
Hashes will be fixed automatically on first login of each user.
33+
* Added ``passlib`` dependency.
34+
* rqworker queue is now named ``coil`` (was ``default``)
35+
* add trailing slashes to all URLs
36+
* use ``url_for()``
37+
* add ``/rebuild/force/`` (== ``nikola build -a``)
38+
39+
v1.0.0
40+
------
41+
42+
* RENAME TO *Coil CMS*
43+
* User documentation
44+
* Form validation
45+
* Redis for storing data
46+
* Rebuilding the site, using RQ as a task queue
47+
48+
v0.6.0
49+
------
50+
51+
* Permission management
52+
* ``setup.py`` and Python packaging
53+
* ``comet`` management command
54+
* more modern pages
55+
* multiple issues fixed
56+
57+
v0.5.0
58+
------
59+
60+
* Switch to Flask
61+
* Cookie-based authentication
62+
* User management
63+
* Style wysihtml properly
64+
* Rename to *Comet CMS*
65+
66+
v0.0.1
67+
------
68+
69+
* Initial version
70+
* Called ``nikola webapp``
71+
* using bottle
72+
* HTTP Basic “Authentication” (sorry)
73+
* wysihtml

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.0'
58+
version = '1.3.1'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.3.0'
60+
release = '1.3.1'
6161

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

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
git+https://github.com/nvie/rq.git#egg=rq
2-
Nikola>=7.4.1
1+
Nikola>=7.5.1
32
docopt==0.6.2
43
Flask==0.10.1
54
Flask-Bcrypt==0.6.2
@@ -14,6 +13,7 @@ pyinotify==0.9.5
1413
python-bcrypt==0.3.1
1514
pytz==2015.2
1615
redis==2.10.3
16+
rq==0.5.3
1717
six==1.9.0
1818
webassets==0.10.1
1919
Werkzeug==0.10.4

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
from setuptools import setup
55

66
with open('requirements.txt', 'r') as fh:
7-
dependencies = [l.strip() for l in fh][1:]
7+
dependencies = [l.strip() for l in fh]
88

99
setup(name='coil',
10-
version='1.3.0',
10+
version='1.3.1',
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)