aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorHailong Wen <youxiabsyw@gmail.com>2018-01-22 14:18:36 -0800
committerGitHub <noreply@github.com>2018-01-22 14:18:36 -0800
commite9b6178dce0dd70e5ba600ba331f50aaa567ce60 (patch)
tree5facc796622a0de3558d74a0f4d05349208aeb0a /README.md
parentd18ff00b33537dc402e22efaf1547f3733293594 (diff)
downloadopencensus-java-e9b6178dce0dd70e5ba600ba331f50aaa567ce60.tar.gz
Update script in RELEASING.md and use them to update release version in all readmes and build files. (fixes #941) (#946)
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 69f680a8..095047a2 100644
--- a/README.md
+++ b/README.md
@@ -27,14 +27,14 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-api</artifactId>
- <version>0.10.1</version>
+ <version>0.11.0</version>
</dependency>
</dependencies>
```
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-api:0.10.1'
+compile 'io.opencensus:opencensus-api:0.11.0'
```
### Hello "OpenCensus" trace events
@@ -85,12 +85,12 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-api</artifactId>
- <version>0.10.1</version>
+ <version>0.11.0</version>
</dependency>
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-impl</artifactId>
- <version>0.10.1</version>
+ <version>0.11.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
@@ -98,8 +98,8 @@ For Maven add to your `pom.xml`:
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-api:0.10.1'
-runtime 'io.opencensus:opencensus-impl:0.10.1'
+compile 'io.opencensus:opencensus-api:0.11.0'
+runtime 'io.opencensus:opencensus-impl:0.11.0'
```
### How to setup exporters?