Skip to content

Commit d34c720

Browse files
committedOct 3, 2017
v1.3.11: Fix bootstrap3 theme detection (#49)
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 6fb53fd commit d34c720

8 files changed

+16
-10
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.10
5+
:Version: 1.3.11
6+
7+
1.3.11
8+
* Fix bootstrap3 theme detection (Issue #49)
69

710
1.3.10
811
* Add `coil unlock` command

‎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.10'
32+
__version__ = '1.3.11'

‎docs/._COIL_NO_CONFIG

Whitespace-only changes.

‎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.10
5+
:Version: 1.3.11
6+
7+
1.3.11
8+
* Fix bootstrap3 theme detection (Issue #49)
69

710
1.3.10
811
* Add `coil unlock` command

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

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

‎release

+3-3
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,15 @@ status 'Generating locales...'
149149

150150
status 'Importing...'
151151
python -c "import $PROJECTLC"
152-
if [[ $? == 1 ]]; then
152+
if [[ $? != 0 ]]; then
153153
error "Import failed. Fix your code or don't come back."
154154
exit 1
155155
fi
156156

157157
if [[ -e tests ]]; then
158158
status 'Running tests...'
159-
py.test tests/
160-
if [[ $? == 1 ]]; then
159+
pytest tests/
160+
if [[ $? != 0 ]]; then
161161
error "Tests failed. Fix your code or don't come back."
162162
exit 1
163163
fi

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[wheel]
2-
universal = 1
2+
universal = 0

‎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.10',
10+
version='1.3.11',
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)
Please sign in to comment.