Skip to content

Commit

Permalink
Version bump - 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Sep 12, 2022
1 parent 7e7fe59 commit 1a11563
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
History
-------

1.5.1 (unreleased)
1.5.1 (2022-09-12)
++++++++++++++++++

* Fixed edge case with ``<script>`` parsing.
Expand Down
7 changes: 1 addition & 6 deletions RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release process

https://github.com/django-functest/django-functest/actions?query=workflow%3A%22Python+package%22+branch%3Amaster

* Make sure you have pulled latest master locally.

* Update HISTORY.rst, removing "(unreleased)" and adding date.

Expand All @@ -23,12 +24,6 @@ Release process

./release.sh

* Tag the release e.g.::

git tag v0.1.0

* Update the version numbers again, moving to the next release, and adding "-dev1"

* Add new section to HISTORY.rst

* ``git push --tags``
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# The short X.Y version.
version = "1.5"
# The full version, including alpha/beta/rc tags.
release = "1.5.1-dev"
release = "1.5.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 3 additions & 0 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ Tested browser versions:
+-------------------+---------------------+----------------------------+
| django-functest | Firefox | Chrome |
+===================+=====================+============================+
| 1.5.1 | Firefox 104 | Chrome 105 |
| | geckodriver 0.31.0 | chromedriver 105 |
+-------------------+---------------------+----------------------------+
| 1.5 | Firefox 103 | Chrome 104 |
| | geckodriver 0.31.0 | chromedriver 104 |
+-------------------+---------------------+----------------------------+
Expand Down
3 changes: 3 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ python setup.py bdist_wheel || exit 1

VERSION=$(./setup.py --version) || exit 1
twine upload dist/django-functest-$VERSION.tar.gz dist/django_functest-$VERSION-*.whl || exit 1
git tag v$VERSION || exit 1
git push || exit 1
git push --tags || exit 1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
except ImportError:
from distutils.core import setup

version = "1.5.1-dev"
version = "1.5.1"

if sys.argv[-1] == "publish":
try:
Expand Down
2 changes: 1 addition & 1 deletion src/django_functest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .server import MultiThreadedLiveServerMixin
from .utils import AdminLoginMixin, ShortcutLoginMixin

__version__ = "1.5.1-dev"
__version__ = "1.5.1"

__all__ = [
"FuncBaseMixin",
Expand Down

0 comments on commit 1a11563

Please sign in to comment.