We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86fea1e + ee775b5 commit b6fd4b2Copy full SHA for b6fd4b2
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+# 1.1.1 (Unreleased)
2
+
3
+BUG FIXES:
4
5
+ * `SDKVersion` in v1.1.0 was incorrectly set to "1.0.0" due to a bug in the release script. Fix for versions beginning at v1.1.1. [GH-191]
6
7
# 1.1.0 (September 27, 2019)
8
9
FEATURES:
scripts/release/release.sh
@@ -55,7 +55,7 @@ function changelogMain {
55
}
56
57
function modifyVersionFiles {
58
- sed -i "s/const SDKVersion =.*/const SDKVersion = \"${TARGET_VERSION}\"/" meta/meta.go
+ sed -i "s/var SDKVersion =.*/var SDKVersion = \"${TARGET_VERSION}\"/" meta/meta.go
59
sed -i "s/var SDKPrerelease =.*/var SDKPrerelease = \"\"/" meta/meta.go
60
61
0 commit comments