Skip to content

Commit 07d3a81

Browse files
authored
Merge pull request #1161 from prometheus/release-1.13
Merge release branch 1.13 to main
2 parents 870469e + 53e51c4 commit 07d3a81

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Unreleased
22

3+
## 1.13.1 / 2022-11-01
4+
5+
* [BUGFIX] Fix race condition with Exemplar in Counter. #1146
6+
* [BUGFIX] Fix `CumulativeCount` value of `+Inf` bucket created from exemplar. #1148
7+
* [BUGFIX] Fix double-counting bug in `promhttp.InstrumentRoundTripperCounter`. #1118
8+
39
## 1.13.0 / 2022-08-05
410

511
* [CHANGE] Minimum required Go version is now 1.17 (we also test client_golang against new 1.19 version).

README.md

+21
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,24 @@ See the [contributing guidelines](CONTRIBUTING.md) and the
6969
[Community section](http://prometheus.io/community/) of the homepage.
7070

7171
`clint_golang` community is also present on the CNCF Slack `#prometheus-client_golang`.
72+
73+
### For Maintainers: Release Process
74+
75+
To cut a minor version:
76+
77+
1. Create a new branch `release-<major>.<minor>` on top of the `main` commit you want to cut the version from and push it.
78+
2. Create a new branch on top of the release branch, e.g. `<yourname>/cut-<major>.<minor>.<patch>`,
79+
3. Change the `VERSION` file.
80+
4. Update `CHANGELOG` (only user-impacting changes to mention).
81+
5. Create PR, and get it reviewed.
82+
6. Once merged, create a release with the `release-<major>.<minor>` tag on GitHub with the `<version> / <date>` title.
83+
7. Announce on the prometheus-announce mailing list, slack and Twitter.
84+
8. Merge the release branch back to the `main` using the "merge without squashing" approach (!).
85+
86+
> NOTE: In case of merge conflicts, you can checkout the release branch in a new branch, e.g. <yourname>/resolve-conflicts`, fix the merge problems there, and then do a PR into main from the new branch. In that way, you still get all the commits in the release branch back into `main`, but leave the release branch alone.
87+
88+
To cut the patch version:
89+
90+
1. Create a branch on top of the release branch you want to use.
91+
2. Cherry-pick the fixes from the `main` branch (or add new commits) to fix critical bugs for that patch release.
92+
3. Follow steps 3-8 as above.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.13.0
1+
1.13.1

0 commit comments

Comments
 (0)