You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/internal/release.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,9 @@ Doing a pre-release should be quick-and-dirty on-demand operation without any of
39
39
1. Run `just tag v$VERSION` on the updated `main` branch.
40
40
2. Run `just promote v$VERSION` to promote the artifacts from GitHub to S3 and PyPi.
41
41
```sh
42
-
export VERSION=0.15.5-alpha.0
42
+
export PYPI_TOKEN=pypi-...;# You'll need this token to publish the pypi package.
43
+
export VERSION=0.16.0-alpha.1
44
+
# Start release. Wait 40 minutes. Then publish pypi package.
43
45
just tag v$VERSION origin/main && sleep $((40*60))&& just promote v$VERSION
44
46
```
45
47
3. Once released, we want to bump the version of alpha so that what was just released and what's on the 'main' branch will not be easily confused. If the version released was `0.1.2-alpha.0` then the next version would be `0.1.2-alpha.1`.
0 commit comments