Skip to content

Commit 7404a12

Browse files
authored
Merge pull request #62 from pytest-dev/release-1.2.0
Release 1.2.0
2 parents 754a8e4 + 5920b39 commit 7404a12

File tree

3 files changed

+29
-18
lines changed

3 files changed

+29
-18
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,5 @@ jobs:
6060
- name: GitHub Release
6161
uses: softprops/action-gh-release@v2
6262
with:
63-
body_path: scripts/latest-release-notes.md
6463
files: dist/*
6564
tag_name: v${{ github.event.inputs.version }}

CHANGELOG.rst

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,52 @@
33
Changelog
44
--------------
55

6-
UNRELEASED
7-
++++++++++
6+
1.2.0
7+
+++++
8+
9+
*2025-06-22*
810

911
* Dropped support for EOL Python versions and added support for Python 3.13.
1012
* 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.
1113

12-
v1.1.1 (2024-01-20)
13-
+++++++++++++++++++
14+
1.1.1
15+
+++++
16+
17+
*2024-01-20*
18+
19+
* Fixes #54 - ``AttributeError`` when cacheprovider plugin disabled. Thanks @jhanm12
1420

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

22+
1.1.0
23+
+++++
1724

18-
v1.1.0 (2022-12-03)
19-
+++++++++++++++++++
25+
*2022-12-03*
2026

21-
* Fixes xdist support (thanks @matejsp)
27+
* Fixes xdist support (thanks @matejsp)
2228

2329

24-
v1.0.4 (2018-11-30)
25-
+++++++++++++++++++
30+
1.0.4
31+
+++++
32+
33+
*2018-11-30*
2634

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

32-
v1.0.3 (2018-11-16)
33-
+++++++++++++++++++
40+
1.0.3
41+
+++++
42+
43+
*2018-11-16*
3444

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

38-
v1.0.0 (2018-10-20)
39-
+++++++++++++++++++
48+
1.0.0
49+
+++++
50+
51+
*2018-10-20*
4052

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

5567

56-
v0.8.0
57-
++++++
68+
0.8.0
69+
+++++
5870

5971
* pytest cache plugin's ``--failed-first`` works now.

RELEASING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Here are the steps on how to make a new release.
66
4. Once all tests pass, start the ``deploy`` workflow manually or via:
77

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

1212
5. Merge the PR.

0 commit comments

Comments
 (0)