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: RELEASE.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,8 +65,7 @@ Also the images we build are based on some image specified in the `FROM` stateme
65
65
```bash
66
66
git checkout main
67
67
git reset --hard <upstream>/main
68
-
git tag -a x.y.z-beta.1 -m x.y.z-beta.1 <commit on main>
69
-
git push --follow-tags <upstream> main
68
+
tbump x.y.z-beta.1
70
69
```
71
70
72
71
- Announce the x.y.z-beta.1 release
@@ -89,11 +88,14 @@ Also the images we build are based on some image specified in the `FROM` stateme
89
88
```bash
90
89
git checkout main
91
90
git reset --hard <upstream>/main
92
-
git tag -a x.y.z -m x.y.z HEAD
93
-
git push --follow-tags <upstream> main
91
+
tbump x.y.z
94
92
```
95
93
96
-
- [ ] Update baseVersion in chartpress to the next release (e.g. `2.1.0-0.dev` after 2.0.0)
94
+
- [ ] Set the next prerelease version (don't create a tag).
95
+
96
+
```bash
97
+
tbump --no-tag x.y+1.z-0.dev
98
+
```
97
99
98
100
- [ ] Create a GitHub release.
99
101
Visit the [release page](https://github.com/jupyterhub/zero-to-jupyterhub-k8s/releases) and create a new release referencing the recent tag. Add a brief text like the one below.
0 commit comments