From bf73d848557d10222b11dc0b767e609c62104dcf Mon Sep 17 00:00:00 2001 From: aklajnert Date: Wed, 24 Jul 2024 13:23:30 +0200 Subject: [PATCH] Bump version --- HISTORY.rst | 13 ++++++++++++- changelog.d/bug.23d6beb2.entry.yaml | 6 ------ changelog.d/other.8fe4eb08.entry.yaml | 5 ----- changelog.d/releases/20.1.5.2.yaml | 16 ++++++++++++++++ setup.py | 2 +- 5 files changed, 29 insertions(+), 13 deletions(-) delete mode 100644 changelog.d/bug.23d6beb2.entry.yaml delete mode 100644 changelog.d/other.8fe4eb08.entry.yaml create mode 100644 changelog.d/releases/20.1.5.2.yaml diff --git a/HISTORY.rst b/HISTORY.rst index d30a67d..87ce195 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,13 +1,24 @@ History ======= +1.5.2 (2024-07-24) +------------------ + +Bug fixes +~~~~~~~~~ +* `#162 `_: Include tests (and docs) and sdist correctly, and stop installing them to site-packages. + +Other changes +~~~~~~~~~~~~~ +* `#163 `_: Add support for Python 3.12. + 1.5.1 (2024-07-23) ------------------ Other changes ~~~~~~~~~~~~~ * `#160 `_: Changed pytest entrypoint to avoid error while loading plugin with `-p` argument. -* `#127 `_: Add `tests` directory to sdist. +* `#128 `_: Add `tests` directory to sdist. 1.5.0 (2023-01-28) ------------------ diff --git a/changelog.d/bug.23d6beb2.entry.yaml b/changelog.d/bug.23d6beb2.entry.yaml deleted file mode 100644 index 4879843..0000000 --- a/changelog.d/bug.23d6beb2.entry.yaml +++ /dev/null @@ -1,6 +0,0 @@ -message: Include tests (and docs) and sdist correctly, and stop installing them to - site-packages. -pr_ids: -- '162' -timestamp: 1721819311 -type: bug diff --git a/changelog.d/other.8fe4eb08.entry.yaml b/changelog.d/other.8fe4eb08.entry.yaml deleted file mode 100644 index d751713..0000000 --- a/changelog.d/other.8fe4eb08.entry.yaml +++ /dev/null @@ -1,5 +0,0 @@ -message: Add support for Python 3.12. -pr_ids: -- '163' -timestamp: 1721819580 -type: other diff --git a/changelog.d/releases/20.1.5.2.yaml b/changelog.d/releases/20.1.5.2.yaml new file mode 100644 index 0000000..6777bd4 --- /dev/null +++ b/changelog.d/releases/20.1.5.2.yaml @@ -0,0 +1,16 @@ +entries: + bug: + - message: Include tests (and docs) and sdist correctly, and stop installing them + to site-packages. + pr_ids: + - '162' + timestamp: 1721819311 + other: + - message: Add support for Python 3.12. + pr_ids: + - '163' + timestamp: 1721819580 +previous_release: 1.5.1 +release_date: '2024-07-24' +release_description: '' +release_version: 1.5.2 diff --git a/setup.py b/setup.py index f0515a3..23022ca 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def read(fname): setup( name="pytest-subprocess", - version="1.5.1", + version="1.5.2", author="Andrzej Klajnert", author_email="python@aklajnert.pl", maintainer="Andrzej Klajnert",