Skip to content

Commit 01dc9d2

Browse files
committed
Post 3.1.1 release actions done
1 parent 4501d07 commit 01dc9d2

4 files changed

Lines changed: 19 additions & 5 deletions

File tree

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release notes
22

3+
## Changes from 3.1.1 to 3.1.2
4+
5+
XXX version-specific blurb XXX
6+
37
## Changes from 3.1.0 to 3.1.1
48

59
* Quick release to fix an issue with version number in the package (was reporting 3.0.0

RELEASING.rst

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,15 @@ Tagging
6767
git push --delete origin vX.Y.Z
6868

6969
* Make sure that the tag is passing the tests in continuous integration (this
70-
may take more than an hour).
70+
may take about 30 min).
71+
72+
* In case the automatic upload to PyPI fails, you can upload the package
73+
wheels (and tarball!) by downloading the artifacts manually, copying to
74+
an empty dir (say dist), and upload to PyPI with::
75+
76+
rm dist/*
77+
# download artifacts from the tag in github
78+
twine upload --repository blosc dist/*
7179

7280
* Update the latest release in the ``doc/python-blosc2.rst`` file with the new version
7381
number (and date?). Do a commit::
@@ -106,6 +114,7 @@ Announcing
106114
skeleton (or possibly as the definitive version). Start the subject with ANN:.
107115

108116
* Announce in Mastodon via https://fosstodon.org/@Blosc2 account and rejoice.
117+
Announce it in Bluesky too.
109118

110119

111120
Post-release actions
@@ -122,8 +131,9 @@ Post-release actions
122131

123132
XXX version-specific blurb XXX
124133

125-
* Update the version number in ``pyproject.toml`` to the next version number
126-
(e.g. ``X.Y.(Z+1).dev``).
134+
* Update the version number in ``pyproject.toml`` and ``version.py`` to the next version number::
135+
136+
python update_version.py X.Y.(Z+1).dev0
127137

128138
* Commit your changes with::
129139

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939
"httpx",
4040
"platformdirs",
4141
]
42-
version = "3.1.1"
42+
version = "3.1.2.dev0"
4343

4444

4545
[project.optional-dependencies]

src/blosc2/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.1.1"
1+
__version__ = "3.1.2.dev0"

0 commit comments

Comments
 (0)