From 6e53c59a58903a790cec3e3f4832d0fd5f184e4c Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Tue, 17 Dec 2019 10:31:33 +0100 Subject: [PATCH] Fix changelog links to contain the missing v --- CHANGELOG.md | 6 +++--- bin/prepare-release.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 061a64a75..0a30ad188 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ # v22.0.0 (2019-12-05) -[Full changelog](https://github.com/mozilla/glean/compare/v21.3.0...22.0.0) +[Full changelog](https://github.com/mozilla/glean/compare/v21.3.0...v22.0.0) * Add option to defer ping lifetime metric persistence ([#530](https://github.com/mozilla/glean/pull/530)) * Add a crate for the nice control API ([#542](https://github.com/mozilla/glean/pull/542)) @@ -23,7 +23,7 @@ # v21.3.0 (2019-12-03) -[Full changelog](https://github.com/mozilla/glean/compare/v21.2.0...21.3.0) +[Full changelog](https://github.com/mozilla/glean/compare/v21.2.0...v21.3.0) * Timers are reset when disabled. That avoids recording timespans across disabled/enabled toggling ([#495](https://github.com/mozilla/glean/pull/495)). * Add a new flag to pings: `send_if_empty` ([#528](https://github.com/mozilla/glean/pull/528)) @@ -32,7 +32,7 @@ # v21.2.0 (2019-11-21) -[Full changelog](https://github.com/mozilla/glean/compare/v21.1.1...21.2.0) +[Full changelog](https://github.com/mozilla/glean/compare/v21.1.1...v21.2.0) * All platforms diff --git a/bin/prepare-release.sh b/bin/prepare-release.sh index 364a6f239..5e37d58c0 100755 --- a/bin/prepare-release.sh +++ b/bin/prepare-release.sh @@ -115,7 +115,7 @@ run rm "${WORKSPACE_ROOT}/${FILE}.bak" FILE=CHANGELOG.md run $SED -i.bak -E \ -e "s/# Unreleased changes/# v${NEW_VERSION} (${DATE})/" \ - -e "s/\.\.\.master/...${NEW_VERSION}/" \ + -e "s/\.\.\.master/...v${NEW_VERSION}/" \ "${WORKSPACE_ROOT}/${FILE}" run rm "${WORKSPACE_ROOT}/${FILE}.bak"