From 7ead376af97fe939b6d7ad71979b3a4740937684 Mon Sep 17 00:00:00 2001 From: adrinjalali Date: Fri, 25 Jul 2025 14:23:24 +0200 Subject: [PATCH 1/2] MNT post release changes --- CONTRIBUTING.rst | 15 +++++++++++---- docs/changes.rst | 3 +++ skops/__init__.py | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index cd247d41..91b7d49d 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -119,13 +119,20 @@ As a maintainer, follow these steps: 5. Create a PR with all the changes and have it reviewed and merged -6. Create a tag with the format "v0.version", e.g. "v0.2", and push it to the - remote repository. Use this tag for releasing the package. If there is a - minor release under the same branch, it would be "v0.2.1" for example. -7. Use the `GitHub action +6. Use the `GitHub action `__ to create a new release on **TestPyPI**. Check it for correctness `on test.pypi `_. + +7. Create a tag with the format "v0.version", e.g. "v0.2", and push it to the + remote repository. Use this tag for releasing the package. If there is a + minor release under the same branch, it would be "v0.2.1" for example. + + .. code:: bash + + git tag v0.2 + git push origin v0.2 + 8. Use the `GitHub action `__ to create a new release on **PyPI**. Check it for correctness `pypi diff --git a/docs/changes.rst b/docs/changes.rst index 2c6e4e3f..9c1895b5 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -9,6 +9,9 @@ skops Changelog :depth: 1 :local: +v0.13 +----- + v0.12 ----- - `huggingface_hub` dependency is now optional. :pr:`462` by `Adrin Jalali`_. diff --git a/skops/__init__.py b/skops/__init__.py index 29721612..47495c96 100644 --- a/skops/__init__.py +++ b/skops/__init__.py @@ -14,4 +14,4 @@ # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = "0.12.dev0" +__version__ = "0.13.dev0" From 499d911b80b4fbcac9fccff483b57b99f12e5acd Mon Sep 17 00:00:00 2001 From: adrinjalali Date: Fri, 25 Jul 2025 14:33:33 +0200 Subject: [PATCH 2/2] feedstock --- CONTRIBUTING.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 91b7d49d..c9bdb7f5 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -145,3 +145,5 @@ As a maintainer, follow these steps: 12. Check that the new stable branch of documentation was built correctly on `readthedocs `_, and make sure all relevant releases are *active*. +13. If any dependency versions are changed, make sure it's reflected in the `conda-forge + feedstock `_.