Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
<https://github.com/skops-dev/skops/actions/workflows/publish-pypi.yml>`__ to
create a new release on **TestPyPI**. Check it for correctness `on test.pypi
<https://test.pypi.org/project/skops/>`_.

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
<https://github.com/skops-dev/skops/actions/workflows/publish-pypi.yml>`__ to
create a new release on **PyPI**. Check it for correctness `pypi
Expand All @@ -138,3 +145,5 @@ As a maintainer, follow these steps:
12. Check that the new stable branch of documentation was built correctly on
`readthedocs <https://readthedocs.org/projects/skops/builds/>`_, 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 <https://github.com/conda-forge/skops-feedstock>`_.
3 changes: 3 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ skops Changelog
:depth: 1
:local:

v0.13
-----

v0.12
-----
- `huggingface_hub` dependency is now optional. :pr:`462` by `Adrin Jalali`_.
Expand Down
2 changes: 1 addition & 1 deletion skops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Loading