Skip to content

Commit 2ebfa7c

Browse files
committed
Release 0.3.0
1 parent e612fd3 commit 2ebfa7c

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
inputs:
99
tag:
10-
description: "Existing tag to release, for example v0.2.0"
10+
description: "Existing tag to release, for example v0.3.0"
1111
required: true
1212
type: string
1313

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ The release path is:
320320
1. Update `jano/_version.py`.
321321
2. Run `python -m pytest -q`.
322322
3. Run `python -m build` and `python -m twine check dist/*`.
323-
4. Push a tag like `v0.2.0`.
323+
4. Push a tag like `v0.3.0`.
324324

325325
That tag triggers the `Publish` workflow, which builds the wheel and source distribution and publishes them to PyPI.
326326

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
project = "Jano"
1313
author = "Marcos Manuel Muraro"
1414
copyright = "2026, Marcos Manuel Muraro"
15-
release = "0.2.0"
15+
release = "0.3.0"
1616

1717
extensions = [
1818
"sphinx.ext.autodoc",

docs/release.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ The repository now includes a dedicated GitHub Actions workflow for PyPI publica
6666

6767
.. code-block:: bash
6868
69-
git tag v0.2.0
70-
git push origin v0.2.0
69+
git tag v0.3.0
70+
git push origin v0.3.0
7171
7272
5. The ``Publish`` workflow builds the artifacts, validates them with ``twine check`` and publishes them to PyPI via trusted publishing.
7373

jano/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package version metadata."""
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.3.0"

tests/test_jano.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def predict(self, X: pd.DataFrame) -> np.ndarray:
5050

5151

5252
def test_public_version_matches_installed_distribution_metadata() -> None:
53-
assert __version__ == "0.2.0"
53+
assert __version__ == "0.3.0"
5454
assert version("jano") == __version__
5555

5656

0 commit comments

Comments
 (0)