Skip to content

Commit 129e0d0

Browse files
authored
Bump to v0.12.5 (#986)
1 parent 3051e48 commit 129e0d0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/internal/publishing.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Update [`mesop/version.py`](https://github.com/google/mesop/blob/main/mesop/vers
1010

1111
You want to first create an RC (release candidate) to ensure that it works.
1212

13-
For example, if the current version is: `0.7.0`, then you should increment the version to `0.8.0rc0` which will create an RC, which is treated as a [pre-release by PyPI](https://packaging.python.org/en/latest/specifications/version-specifiers/#pre-releases).
13+
For example, if the current version is: `0.7.0`, then you should increment the version to `0.8.0rc1` which will create an RC, which is treated as a [pre-release by PyPI](https://packaging.python.org/en/latest/specifications/version-specifiers/#pre-releases).
1414

1515
## Install locally
1616

@@ -28,7 +28,7 @@ This will build the Mesop pip package and install it locally so you can test it.
2828
2929
### Dev CLI
3030

31-
The above shell script will run the following command:
31+
The above shell script will tell you to run the following command:
3232

3333
```sh
3434
mesop main.py
@@ -67,7 +67,7 @@ Because Colab installs from PyPI, you will need to test the RC on Colab after up
6767
Open our [Mesop Colab notebook](https://colab.research.google.com/github/google/mesop/blob/main/notebooks/mesop_colab_getting_started.ipynb). You will need to explicitly pip install the RC version as pip will _not_ automatically install a pre-release version, even if it's the newest version. So change the first cell to something like:
6868

6969
```sh
70-
!pip install mesop==0.X.Yrc0
70+
!pip install mesop==0.X.Yrc1
7171
```
7272

7373
> Tip: sometimes it takes a minute for the PyPI registry to be updated after upload, so just try again.
@@ -76,11 +76,11 @@ Then, run all the cells and make sure it works. Usually if something breaks in C
7676

7777
## Change the version from RC to regular release
7878

79-
If you find an issue, then redo the above steps and create another RC candidate: `0.8.0rc0` -> `0.8.0rc1`.
79+
If you find an issue, then redo the above steps and create another RC candidate: `0.8.0rc1` -> `0.8.0rc2`.
8080

8181
If all the testing looks good, then you can update [`mesop/version.py`](https://github.com/google/mesop/blob/main/mesop/version.py) and change the version from RC to a regular release, for example:
8282

83-
`0.8.0rc0` -> `0.8.0`
83+
`0.8.0rc1` -> `0.8.0`
8484

8585
Re-do the steps above to build, test and upload it to PyPI.
8686

mesop/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Contains the version string."""
22

3-
VERSION = "0.12.4"
3+
VERSION = "0.12.5"
44

55
if __name__ == "__main__":
66
print(VERSION)

0 commit comments

Comments
 (0)