Skip to content

Commit 7c75e2a

Browse files
committed
Post 1.10.1 release actions done
1 parent 993e18b commit 7c75e2a

4 files changed

Lines changed: 33 additions & 3 deletions

File tree

RELEASE_NOTES.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@
88
:URL: https://github.com/Blosc/python-blosc
99

1010

11+
Changes from 1.10.1 to 1.10.2
12+
=============================
13+
14+
#XXX version-specific blurb XXX#
15+
16+
1117
Changes from 1.10.0 to 1.10.1
12-
============================
18+
=============================
1319

1420
- Added pyproject.toml to fix issues when building the package for a
1521
Python version that does not have a wheel. See:

RELEASING.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ Preliminaries
1212

1313
* Make sure that the current master branch is passing the tests on Github Actions.
1414

15+
* Create a new branch (if it does not exist) called vX.Y.x (e.g. v1.10.x).
16+
Merge master into the current branch:
17+
18+
- $ git switch master
19+
- $ git pull
20+
- $ git switch vX.Y.x
21+
- $ git merge master
22+
23+
- Delete the possible old branch vX.(Y-1).x.
24+
1525
* Make sure that ``RELEASE_NOTES.rst``
1626
and ``ANNOUNCE.rst`` are up to date with the latest news in the release.
1727

@@ -70,6 +80,18 @@ Tagging
7080

7181
* Check that wheels are created and uploaded to PyPI.
7282

83+
Merging
84+
-------
85+
86+
* Merge the vX.Y.x branch back into master.
87+
88+
Releasing on GitHub
89+
-------------------
90+
91+
* Go to: https://github.com/Blosc/python-blosc/releases.
92+
93+
* Draft a new release. Make sure you use an existing tag.
94+
7395
Announcing
7496
----------
7597

@@ -83,6 +105,8 @@ Announcing
83105
Post-release actions
84106
--------------------
85107

108+
* Make sure you are in the master branch.
109+
86110
* Edit ``VERSION`` in master to increment the version to the next
87111
minor one (i.e. X.Y.Z --> X.Y.(Z+1).dev0).
88112

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.1
1+
1.10.2.dev0

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = '1.10'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '1.10.1'
61+
release = '1.10.2'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

0 commit comments

Comments
 (0)