From 078f11f85b2cb5d535f5856903e73b758a8f0568 Mon Sep 17 00:00:00 2001 From: bwplotka Date: Tue, 1 Nov 2022 16:37:13 +0000 Subject: [PATCH] Cut 1.13.1 release (+ documenting release process). Signed-off-by: bwplotka --- CHANGELOG.md | 6 ++++++ README.md | 19 +++++++++++++++++++ VERSION | 2 +- 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faccd3d..14ae670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## Unreleased +## 1.13.1 / 2022-11-01 + +* [BUGFIX] Fix race condition with Exemplar in Counter. #1146 +* [BUGFIX] Fix `CumulativeCount` value of `+Inf` bucket created from exemplar. #1148 +* [BUGFIX] Fix double-counting bug in `promhttp.InstrumentRoundTripperCounter`. #1118 + ## 1.13.0 / 2022-08-05 * [CHANGE] Minimum required Go version is now 1.17 (we also test client_golang against new 1.19 version). diff --git a/README.md b/README.md index 40c6146..af6889e 100644 --- a/README.md +++ b/README.md @@ -69,3 +69,22 @@ See the [contributing guidelines](CONTRIBUTING.md) and the [Community section](http://prometheus.io/community/) of the homepage. `clint_golang` community is also present on the CNCF Slack `#prometheus-client_golang`. + +### For Maintainers: Release Process + +To cut minor version: + +1. Create new branch `release-.` on top of main commit you want to cut version from and push it. +2. Create new branch on top of release branch. +3. Change `VERSION` file. +4. Update `CHANGELOG` (only user-impacting changes to mention). +5. Create PR, get it reviewed. +6. Once merged, create release for `release-.` tag on GitHub with ` / ` title. +7. Announce on prometheus-announce mailing list, slack and Twitter. +8. Merge release branch back to main using "merge without squashing" approach (!). + +To cut patch version: + +1. Create branch on top of release branch you want to use. +2. Cherry-pick fixes from main or add commits to fix critical bugs only for that patch release. +3. Follow steps 3-8 as above. diff --git a/VERSION b/VERSION index feaae22..b50dd27 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.13.0 +1.13.1