We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30ed56a commit 3c31539Copy full SHA for 3c31539
RELEASE.md
@@ -6,16 +6,25 @@
6
const Version = "1.2.2"
7
```
8
9
-2. Commit and tag:
+2. Commit and open a PR (main is branch-protected):
10
11
```sh
12
+ git checkout -b bump/v1.2.2
13
git add version.go
14
git commit -m "chore: bump version to 1.2.2"
15
+ git push origin bump/v1.2.2
16
+ # open a PR, get it reviewed and merged
17
+ ```
18
+
19
+3. After the PR is merged, tag the merge commit on main:
20
21
+ ```sh
22
+ git checkout main && git pull
23
git tag v1.2.2
- git push origin main --tags
24
+ git push origin v1.2.2
25
26
-3. Trigger the Go module proxy to index the new version:
27
+4. Trigger the Go module proxy to index the new version:
28
29
30
GOPROXY=proxy.golang.org go list -m github.com/linkvite/go@v1.2.2
0 commit comments