Skip to content

Commit

Permalink
Version bump 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Jan 11, 2024
1 parent 6d42583 commit 1d6d6ba
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
11 changes: 9 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,19 @@
History
-------

1.6 (2024-01-11)
++++++++++++++++

* :meth:`~django_functest.FuncCommonApi.follow_link` now accepts ``text=`` argument, thanks @duncanjbrown
* Fixed bug in :meth: :meth:`~django_functest.AdminLoginMixin.do_logout` for Django >= 5


1.5.5 (2023-12-05)
++++++++++++++++++

* Fixed bug with ``fill()`` causing ``onchange`` event to trigger twice.
* Fixed bug with :meth:`~django_functest.FuncCommonApi.fill` causing ``onchange`` event to trigger twice.
* Fixed headless mode for latest Selenium with Firefox/Chrome
* Avoid depending on Keys.CONTROL as it means something different on MacOS, thanks @duncanjbrown.
* Avoid depending on ``Keys.CONTROL`` as it means something different on MacOS, thanks @duncanjbrown.

1.5.4 (2023-04-19)
++++++++++++++++++
Expand Down
3 changes: 2 additions & 1 deletion docs/common.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ followed the same pattern.

.. method:: follow_link(css_selector=None, text=None)

Follows the link specified in the CSS selector or the specified text.
Follows the link specified in the CSS selector, or a link matching the
specified link text.

You will get an exception if no links match.

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
# built documents.
#
# The short X.Y version.
version = "1.5"
version = "1.6"
# The full version, including alpha/beta/rc tags.
release = "1.5.5"
release = "1.6"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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.5"
__version__ = "1.6"

__all__ = [
"FuncBaseMixin",
Expand Down

0 comments on commit 1d6d6ba

Please sign in to comment.