Skip to content

Commit

Permalink
Version bump - 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Aug 22, 2022
1 parent 08679c8 commit fd0dbd4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
7 changes: 6 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
History
-------

1.5 (unreleased)
1.5 (2022-08-22)
++++++++++++++++

* Added the ability to do
Expand All @@ -21,6 +21,11 @@ History
* Added the ability to :meth:`~django_functest.FuncCommonApi.submit` a form by
specifying the form element itself, rather than a button.

* Added :doc:`interactive` documentation.

* Lots of internal cleanups and layout reorg, including switching to pytest for
our own test suite.

1.4.1 (2022-07-12)
++++++++++++++++++

Expand Down
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-dev1"
release = "1.5"

# 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 | Firefox 103 | Chrome 104 |
| | geckodriver 0.31.0 | chromedriver 104 |
+-------------------+---------------------+----------------------------+
| 1.4 | Firefox 98.0.2 | Chrome 100.0.4896.75 |
| | geckodriver 0.30.0 | chromedriver 100.0.4896.60 |
+-------------------+---------------------+----------------------------+
Expand Down
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-dev1"
version = "1.5"

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-dev1"
__version__ = "1.5"

__all__ = [
"FuncBaseMixin",
Expand Down

0 comments on commit fd0dbd4

Please sign in to comment.