aboutsummaryrefslogtreecommitdiffstats
path: root/RELEASING.md
diff options
context:
space:
mode:
authorBogdan Drutu <bdrutu@google.com>2017-06-19 23:54:11 -0700
committerGitHub <noreply@github.com>2017-06-19 23:54:11 -0700
commit1d2eda65c51e2528e7c6ccb41d9f046ae307d97b (patch)
tree69dc1efeb37dd1b497a2aadbd0c06913ac6c720d /RELEASING.md
parent65f8bda11b6712d42a942bb4d51fd56d618a132b (diff)
downloadplatform_external_opencensus-java-1d2eda65c51e2528e7c6ccb41d9f046ae307d97b.tar.gz
platform_external_opencensus-java-1d2eda65c51e2528e7c6ccb41d9f046ae307d97b.tar.bz2
platform_external_opencensus-java-1d2eda65c51e2528e7c6ccb41d9f046ae307d97b.zip
Update main build.gradle for export to use OpenCensus. (#374)
Diffstat (limited to 'RELEASING.md')
-rw-r--r--RELEASING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/RELEASING.md b/RELEASING.md
index dffbb245..c46725e7 100644
--- a/RELEASING.md
+++ b/RELEASING.md
@@ -78,7 +78,7 @@ token](https://help.github.com/articles/creating-a-personal-access-token-for-the
```bash
$ git checkout -b bump-version master
# Change version to next minor (and keep -SNAPSHOT)
- $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_INSTRUMENTATION_VERSION\)/'$MAJOR.$((MINOR+1)).0'\1/' \
+ $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_OPENCENSUS_VERSION\)/'$MAJOR.$((MINOR+1)).0'\1/' \
"${VERSION_FILES[@]}"
$ ./gradlew build
$ git commit -a -m "Start $MAJOR.$((MINOR+1)).0 development cycle"
@@ -100,7 +100,7 @@ token](https://help.github.com/articles/creating-a-personal-access-token-for-the
```bash
$ git checkout -b release v$MAJOR.$MINOR.x
# Change version to remove -SNAPSHOT
- $ sed -i 's/-SNAPSHOT\(.*CURRENT_INSTRUMENTATION_VERSION\)/\1/' "${VERSION_FILES[@]}"
+ $ sed -i 's/-SNAPSHOT\(.*CURRENT_OPENCENSUS_VERSION\)/\1/' "${VERSION_FILES[@]}"
$ ./gradlew build
$ git commit -a -m "Bump version to $MAJOR.$MINOR.$PATCH"
$ git tag -a v$MAJOR.$MINOR.$PATCH -m "Version $MAJOR.$MINOR.$PATCH"
@@ -111,7 +111,7 @@ token](https://help.github.com/articles/creating-a-personal-access-token-for-the
```bash
# Change version to next patch and add -SNAPSHOT
- $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_INSTRUMENTATION_VERSION\)/'$MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT'\1/' \
+ $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_OPENCENSUS_VERSION\)/'$MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT'\1/' \
"${VERSION_FILES[@]}"
$ ./gradlew build
$ git commit -a -m "Bump version to $MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT"