diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 873ae80..39c7ad7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 `_: ``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=``, or ``--random-order-seed=``, or @@ -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. diff --git a/RELEASING.rst b/RELEASING.rst index 2c734f1..fd51a54 100644 --- a/RELEASING.rst +++ b/RELEASING.rst @@ -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.