From ad6e90f5b760313c7b7cc946983edd3c37c037a7 Mon Sep 17 00:00:00 2001 From: kdeldycke Date: Wed, 11 Sep 2024 21:02:57 +0000 Subject: [PATCH] [changelog] Post-release version bump --- changelog.md | 5 +++++ citation.cff | 4 ++-- extra_platforms/__init__.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/changelog.md b/changelog.md index 9d93af83..a169986d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## [1.3.1 (unreleased)](https://github.com/kdeldycke/extra-platforms/compare/v1.3.0...main) + +> [!IMPORTANT] +> This version is not released yet and is under active development. + ## [1.3.0 (2024-09-11)](https://github.com/kdeldycke/extra-platforms/compare/v1.2.1...v1.3.0) - Add detection of all versions of macOS and Windows. Closes #55. diff --git a/citation.cff b/citation.cff index 5559c0ff..0dfeb3e8 100644 --- a/citation.cff +++ b/citation.cff @@ -1,4 +1,4 @@ -cff-version: 1.3.0 +cff-version: 1.3.1 title: "Extra Platforms" message: "If you use this software, please cite it as below." type: software @@ -8,7 +8,7 @@ authors: email: kevin@deldycke.com orcid: "https://orcid.org/0000-0001-9748-9014" doi: 10.5281/zenodo.13341712 -version: 1.3.0 +version: 1.3.1 # The release date is kept up to date by the external workflows. See: # https://github.com/kdeldycke/workflows/blob/33b704b489c1aa18b7b7efbf963e153e91e1c810/.github/workflows/changelog.yaml#L135-L137 date-released: 2024-09-11 diff --git a/extra_platforms/__init__.py b/extra_platforms/__init__.py index fcbb2356..a29ef2aa 100644 --- a/extra_platforms/__init__.py +++ b/extra_platforms/__init__.py @@ -137,7 +137,7 @@ # XXX Not imported at package level so dependency on Pytest can stay optional. # from .pytest import * -__version__ = "1.3.0" +__version__ = "1.3.1" """Examples of valid version strings according :pep:`440#version-scheme`: .. code-block:: python diff --git a/pyproject.toml b/pyproject.toml index 7bae353c..29096cb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] # Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/ name = "extra-platforms" -version = "1.3.0" +version = "1.3.1" # Python versions and their status: https://devguide.python.org/versions/ requires-python = ">= 3.9" description = "Detect platforms and group them by family" @@ -100,7 +100,7 @@ branch = true precision = 2 [tool.bumpversion] -current_version = "1.3.0" +current_version = "1.3.1" allow_dirty = true # TODO: Reuse the same search and replace patterns available in the reused workflows' pyproject.toml.