Skip to content

Commit

Permalink
v1.3.11: Fix bootstrap3 theme detection (#49)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Oct 3, 2017
1 parent 6fb53fd commit d34c720
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -2,7 +2,10 @@
Appendix A. Changelog
=====================

:Version: 1.3.10
:Version: 1.3.11

1.3.11
* Fix bootstrap3 theme detection (Issue #49)

1.3.10
* Add `coil unlock` command
Expand Down
2 changes: 1 addition & 1 deletion coil/__init__.py
Expand Up @@ -29,4 +29,4 @@

__all__ = ['__version__']

__version__ = '1.3.10'
__version__ = '1.3.11'
Empty file removed docs/._COIL_NO_CONFIG
Empty file.
5 changes: 4 additions & 1 deletion docs/CHANGELOG.rst
Expand Up @@ -2,7 +2,10 @@
Appendix A. Changelog
=====================

:Version: 1.3.10
:Version: 1.3.11

1.3.11
* Fix bootstrap3 theme detection (Issue #49)

1.3.10
* Add `coil unlock` command
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.10'
version = '1.3.11'
# The full version, including alpha/beta/rc tags.
release = '1.3.10'
release = '1.3.11'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions release
Expand Up @@ -149,15 +149,15 @@ status 'Generating locales...'

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

if [[ -e tests ]]; then
status 'Running tests...'
py.test tests/
if [[ $? == 1 ]]; then
pytest tests/
if [[ $? != 0 ]]; then
error "Tests failed. Fix your code or don't come back."
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,2 +1,2 @@
[wheel]
universal = 1
universal = 0
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.10',
version='1.3.11',
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 d34c720

Please sign in to comment.