From 66c008c3d6ad856cac92a0af53186efbffa8e6a5 Mon Sep 17 00:00:00 2001 From: Yuri Shkuro Date: Sun, 14 Jun 2020 18:00:31 -0400 Subject: [PATCH] Prepare release 2.24.0 Signed-off-by: Yuri Shkuro --- CHANGELOG.md | 7 ++++++- RELEASE.md | 1 + constants.go | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7649952e..6a7e3c5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ Changes by Version ================== -2.23.2 (unreleased) +2.24.0 (2020-06-14) ------------------- +- Mention FromEnv() in the README, docs, and examples (#518) -- Martin Lercher +- Serialize access to RemotelyControlledSampler.sampler (#515) -- Dima +- Override reporter config only when agent host/port is set in env (#513) -- ilylia +- Converge on JAEGER_SAMPLING_ENDPOINT env variable (#511) -- Eundoo Song + 2.23.1 (2020-04-28) ------------------- diff --git a/RELEASE.md b/RELEASE.md index 115e49ab..12438d84 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -2,6 +2,7 @@ 1. Create a PR "Preparing for release X.Y.Z" against master branch * Alter CHANGELOG.md from ` (unreleased)` to ` (YYYY-MM-DD)` + * Use `git log --pretty=format:'- %s -- %an'` as the basis for for changelog entries * Update `JaegerClientVersion` in constants.go to `Go-X.Y.Z` 2. Create a release "Release X.Y.Z" on Github * Create Tag `vX.Y.Z` diff --git a/constants.go b/constants.go index e08bd5b2..feaf344a 100644 --- a/constants.go +++ b/constants.go @@ -22,7 +22,7 @@ import ( const ( // JaegerClientVersion is the version of the client library reported as Span tag. - JaegerClientVersion = "Go-2.23.2" + JaegerClientVersion = "Go-2.24.0" // JaegerClientVersionTagKey is the name of the tag used to report client version. JaegerClientVersionTagKey = "jaeger.version"