From 5db3ceb05c9ed5e70209f584569afc9341a2c7a3 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 17 Jul 2023 11:51:17 -0700 Subject: [PATCH 1/2] Prepare 4.3.1 release --- CHANGELOG.md | 7 +++++++ changelog.d/20230717_082750_rra_versions.md | 3 --- 2 files changed, 7 insertions(+), 3 deletions(-) delete mode 100644 changelog.d/20230717_082750_rra_versions.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d70f2fc..f7d8bd9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ Changes for the upcoming release can be found in [changelog.d](https://github.co + +## 4.3.1 (2023-07-17) + +### Bug fixes + +- Safir now pins the major version of all of its non-development dependencies. The impetus for this change is to prevent upgrades to Pydantic 2.x until Safir's Pydantic models are ready for that upgrade, but a similar principle applies to other dependencies. These pins will be selectively relaxed once Safir has been confirmed to work with a new major release. + ## 4.3.0 (2023-05-23) diff --git a/changelog.d/20230717_082750_rra_versions.md b/changelog.d/20230717_082750_rra_versions.md deleted file mode 100644 index 7db4a4c7..00000000 --- a/changelog.d/20230717_082750_rra_versions.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bug fixes - -- Safir now pins the major version of all of its non-development dependencies. The impetus for this change is to prevent upgrades to Pydantic 2.x until Safir's Pydantic models are ready for that upgrade, but a similar principle applies to other dependencies. These pins will be selectively relaxed once Safir has been confirmed to work with a new major release. From 677d448bc3cdca700660227f9562c0915be252a1 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 17 Jul 2023 12:12:28 -0700 Subject: [PATCH 2/2] Fix version of PyPI publish action One instance of the lsst-sqre/build-and-publish-to-pypi action mistakenly wasn't updated to the latest version. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7b2bac9d..ceff87f8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -120,6 +120,6 @@ jobs: with: fetch-depth: 0 # full history for setuptools_scm - - uses: lsst-sqre/build-and-publish-to-pypi@v1 + - uses: lsst-sqre/build-and-publish-to-pypi@v2 with: python-version: "3.11"