Skip to content

Release 1.2.0 #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 28 additions & 16 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,52 @@
Changelog
--------------

UNRELEASED
++++++++++
1.2.0
+++++

*2025-06-22*

* Dropped support for EOL Python versions and added support for Python 3.13.
* Fix `#58 <https://github.com/pytest-dev/pytest-random-order/issues/58>`_: ``return`` in a ``finally`` block swallows exceptions and raises a warning in Python 3.14.

v1.1.1 (2024-01-20)
+++++++++++++++++++
1.1.1
+++++

*2024-01-20*

* Fixes #54 - ``AttributeError`` when cacheprovider plugin disabled. Thanks @jhanm12

* Fixes #54 - ``AttributeError`` when cacheprovider plugin disabled. Thanks @jhanm12

1.1.0
+++++

v1.1.0 (2022-12-03)
+++++++++++++++++++
*2022-12-03*

* Fixes xdist support (thanks @matejsp)
* Fixes xdist support (thanks @matejsp)


v1.0.4 (2018-11-30)
+++++++++++++++++++
1.0.4
+++++

*2018-11-30*

* Fixes issues with doctests reported in #36 - ``class``, ``package`` and ``module`` didn't work
because ``DoctestItem`` doesn't have ``cls`` or ``module`` attributes. Thanks @tobywf.
* Deprecate ``none`` bucket type. **Update**: this was a mistake, it will be kept for backwards compatibility.
* With tox, run tests of pytest-random-order with both pytest 3 and 4.

v1.0.3 (2018-11-16)
+++++++++++++++++++
1.0.3
+++++

*2018-11-16*

* Fixes compatibility issues with pytest 4.0.0, works with pytest 3.0+ as before.
* Tests included in the source distribution.

v1.0.0 (2018-10-20)
+++++++++++++++++++
1.0.0
+++++

*2018-10-20*

* Plugin no longer alters the test order by default. You will have to either 1) pass ``--random-order``,
or ``--random-order-bucket=<bucket>``, or ``--random-order-seed=<seed>``, or
Expand All @@ -53,7 +65,7 @@ v1.0.0 (2018-10-20)
same thing so doesn't import it).


v0.8.0
++++++
0.8.0
+++++

* pytest cache plugin's ``--failed-first`` works now.
2 changes: 1 addition & 1 deletion RELEASING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Here are the steps on how to make a new release.
4. Once all tests pass, start the ``deploy`` workflow manually or via:

```
gh workflow run deploy.yml --repo pytest-dev/pytest-mock --ref release-VERSION -f version=VERSION
gh workflow run deploy.yml --repo pytest-dev/pytest-random-order --ref release-VERSION -f version=VERSION
```

5. Merge the PR.
Loading