File tree 3 files changed +26
-1
lines changed
3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
1
## Unreleased
2
2
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
+
3
9
## 1.13.0 / 2022-08-05
4
10
5
11
* [ CHANGE] Minimum required Go version is now 1.17 (we also test client_golang against new 1.19 version).
Original file line number Diff line number Diff line change @@ -69,3 +69,22 @@ See the [contributing guidelines](CONTRIBUTING.md) and the
69
69
[ Community section] ( http://prometheus.io/community/ ) of the homepage.
70
70
71
71
` clint_golang ` community is also present on the CNCF Slack ` #prometheus-client_golang ` .
72
+
73
+ ### For Maintainers: Release Process
74
+
75
+ To cut minor version:
76
+
77
+ 1 . Create new branch ` release-<major>.<minor> ` on top of main commit you want to cut version from and push it.
78
+ 2 . Create new branch on top of release branch.
79
+ 3 . Change ` VERSION ` file.
80
+ 4 . Update ` CHANGELOG ` (only user-impacting changes to mention).
81
+ 5 . Create PR, get it reviewed.
82
+ 6 . Once merged, create release for ` release-<major>.<minor> ` tag on GitHub with ` <version> / <date> ` title.
83
+ 7 . Announce on prometheus-announce mailing list, slack and Twitter.
84
+ 8 . Merge release branch back to main using "merge without squashing" approach (!).
85
+
86
+ To cut patch version:
87
+
88
+ 1 . Create branch on top of release branch you want to use.
89
+ 2 . Cherry-pick fixes from main or add commits to fix critical bugs only for that patch release.
90
+ 3 . Follow steps 3-8 as above.
Original file line number Diff line number Diff line change 1
- 1.13.0
1
+ 1.13.1
You can’t perform that action at this time.
0 commit comments