Skip to content

Commit

Permalink
Prepare release 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Mar 12, 2019
1 parent 31fd181 commit de77ccc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
9 changes: 8 additions & 1 deletion HISTORY.rst
Expand Up @@ -5,9 +5,16 @@ History

Development
+++++++++++


0.0.8 (2019-03-12)
++++++++++++++++++
- Drop support for the `base_url` setting (#105)
- Remove use of "falsy" as a string literal (#111)
- Fix javascript inclusion bugs (#71)
- Allow email to have addons (#131)
- Do not mark placeholder text as safe (#135)
- Adopt black

0.0.7 (2018-08-22)
++++++++++++++++++
Expand All @@ -25,7 +32,7 @@ Development
+++++++++++++++++++
- Change form help text element from div to small (#60)
- Upgrade Bootstrap to 4.0.0 (#66)

0.0.5 (2018-01-03)
++++++++++++++++++
- Drop develop branch, work with master and feature branches
Expand Down
2 changes: 1 addition & 1 deletion bootstrap4/__init__.py
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "0.0.7"
__version__ = "0.0.8"
5 changes: 5 additions & 0 deletions setup.py
Expand Up @@ -20,6 +20,11 @@
with open(os.path.join(os.path.dirname(__file__), "HISTORY.rst")) as history_file:
history = history_file.read().replace(".. :changelog:", "")

if sys.argv[-1] == "tag":
os.system("git tag -a v{} -m 'tagging v{}'".format(VERSION, VERSION))
os.system("git push --tags && git push origin master")
sys.exit()

if sys.argv[-1] == "publish":
os.system("cd docs && make html")
os.system("python setup.py sdist")
Expand Down

0 comments on commit de77ccc

Please sign in to comment.