Skip to content

Commit

Permalink
Bump to 0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Jun 1, 2018
1 parent 2a87887 commit 3d0454a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
16 changes: 9 additions & 7 deletions cmsplugin_cascade/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@
6. git push
7. assure that all tests pass on https://travis-ci.org/jrief/djangocms-cascade
8. git push --tags
9. python setup.py sdist upload
10. bump the version, append ".dev0" to __version__
11. Add a new heading to docs/source/changelog.rst, named "<next-version>.dev0"
12. git add cmsplugin_cascade/__init__.py docs/source/changelog.rst
12. git commit -m 'Start with <version>'
13. git push
9. rm -rf dist
10. python setup.py sdist
11. twine upload dist/*
12. bump the version, append ".dev0" to __version__
13. Add a new heading to docs/source/changelog.rst, named "<next-version>.dev0"
14. git add cmsplugin_cascade/__init__.py docs/source/changelog.rst
15. git commit -m 'Start with <version>'
16. git push
"""
__version__ = "0.16.1"
__version__ = "0.16.2"

default_app_config = 'cmsplugin_cascade.apps.CascadeConfig'
6 changes: 6 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Release History
===============


0.16.2
======
* Fix Markdown while uploading to PyPI.


0.16.1
======
* Fix: Compute link of ``Page`` object holding documentation menu.
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def readfile(filename):
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
long_description=readfile('README.md'),
long_description_content_type='text/markdown',
include_package_data=True,
zip_safe=False,
)

0 comments on commit 3d0454a

Please sign in to comment.