From 4e6b67f8b8f47dab458d9dad84187a6b84d98b34 Mon Sep 17 00:00:00 2001 From: Dane Hillard Date: Mon, 28 Oct 2024 09:02:56 -0400 Subject: [PATCH 1/2] Bump version and changelog --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c594a83..7a40821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [8.0.0-post.1] - 2024-10-28 ### Changed - Modernize package quality tooling and configuration - Add support for Python 3.13 diff --git a/pyproject.toml b/pyproject.toml index 6dbd511..3105dd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "apiron" -version = "8.0.0" +version = "8.0.0-post.1" description = "apiron helps you cook a tasty client for RESTful APIs. Just don't wash it with SOAP." authors = [ { name = "Ithaka Harbors, Inc.", email = "opensource@ithaka.org" }, From de0d908e4e080efd7fc5c88ee1c2f6ae4a813aac Mon Sep 17 00:00:00 2001 From: Dane Hillard Date: Mon, 28 Oct 2024 10:16:37 -0400 Subject: [PATCH 2/2] Update configuration file reference in CONTRIBUTING.md --- .github/CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index e764ca3..1a3ab29 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -60,8 +60,8 @@ To participate in the release process, you'll need the following: ### Preparing a release -1. Once all changes for a release are approved and incorporated into `dev`, update the `setup.cfg` file to a new semantic version. Update `CHANGELOG.md` to reflect the new version and make sure all changes are reflected (see link in `CHANGELOG.md` for formatting). +1. Once all changes for a release are approved and incorporated into `dev`, update the `pyproject.toml` file to a new semantic version. Update `CHANGELOG.md` to reflect the new version and make sure all changes are reflected (see link in `CHANGELOG.md` for formatting). 1. Open a pull request titled something like "v3.X.X release prep" and merge to `dev` -1. Tag the head of `dev` as a new GitHub release matching the version in `setup.cfg`, using the body of the version's changes from `CHANGELOG.md` as the release description +1. Tag the head of `dev` as a new GitHub release matching the version in `pyproject.toml`, using the body of the version's changes from `CHANGELOG.md` as the release description 1. Monitor the resulting [actions](https://github.com/ithaka/apiron/actions) to make sure the build artifacts are uploaded to PyPI and the GitHub release 1. Smoke check the documentation build on Read the Docs