aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorsebright <sebright@google.com>2018-09-18 12:04:27 -0700
committerGitHub <noreply@github.com>2018-09-18 12:04:27 -0700
commita5d2739b4fbbfcd0da61ef2f179ba6044d2d04a2 (patch)
treee522acfe6a4136de9ae92954364d979be61e86e1 /contrib
parentc78686d8ffb058723ebedda040ca5efd860aefe5 (diff)
downloadopencensus-java-a5d2739b4fbbfcd0da61ef2f179ba6044d2d04a2.tar.gz
Update release versions for all readme and build files. (#1452)
Diffstat (limited to 'contrib')
-rw-r--r--contrib/appengine_standard_util/README.md4
-rw-r--r--contrib/exemplar_util/README.md4
-rw-r--r--contrib/grpc_util/README.md4
-rw-r--r--contrib/http_util/README.md8
-rw-r--r--contrib/log_correlation/log4j2/README.md4
-rw-r--r--contrib/log_correlation/stackdriver/README.md4
-rw-r--r--contrib/monitored_resource_util/README.md4
-rw-r--r--contrib/spring/README.md12
-rw-r--r--contrib/spring_sleuth_v1x/README.md4
-rw-r--r--contrib/zpages/README.md12
10 files changed, 30 insertions, 30 deletions
diff --git a/contrib/appengine_standard_util/README.md b/contrib/appengine_standard_util/README.md
index 4080e178..3ff5a0ad 100644
--- a/contrib/appengine_standard_util/README.md
+++ b/contrib/appengine_standard_util/README.md
@@ -16,14 +16,14 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-appengine-standard-util</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
</dependencies>
```
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-contrib-appengine-standard-util:0.16.0'
+compile 'io.opencensus:opencensus-contrib-appengine-standard-util:0.16.1'
```
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master
diff --git a/contrib/exemplar_util/README.md b/contrib/exemplar_util/README.md
index 88698eb5..1c9d62df 100644
--- a/contrib/exemplar_util/README.md
+++ b/contrib/exemplar_util/README.md
@@ -17,14 +17,14 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-exemplar-util</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
</dependencies>
```
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-contrib-exemplar-util:0.16.0'
+compile 'io.opencensus:opencensus-contrib-exemplar-util:0.16.1'
```
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master
diff --git a/contrib/grpc_util/README.md b/contrib/grpc_util/README.md
index 9c4757fe..7c5c7b99 100644
--- a/contrib/grpc_util/README.md
+++ b/contrib/grpc_util/README.md
@@ -16,14 +16,14 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-grpc-util</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
</dependencies>
```
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-contrib-grpc-util:0.16.0'
+compile 'io.opencensus:opencensus-contrib-grpc-util:0.16.1'
```
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master
diff --git a/contrib/http_util/README.md b/contrib/http_util/README.md
index 666fbdd8..9678fcb7 100644
--- a/contrib/http_util/README.md
+++ b/contrib/http_util/README.md
@@ -16,20 +16,20 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-api</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-http-util</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
</dependencies>
```
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-api:0.16.0'
-compile 'io.opencensus:opencensus-contrib-http-util:0.16.0'
+compile 'io.opencensus:opencensus-api:0.16.1'
+compile 'io.opencensus:opencensus-contrib-http-util:0.16.1'
```
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master
diff --git a/contrib/log_correlation/log4j2/README.md b/contrib/log_correlation/log4j2/README.md
index 13afc268..a5bf1449 100644
--- a/contrib/log_correlation/log4j2/README.md
+++ b/contrib/log_correlation/log4j2/README.md
@@ -30,7 +30,7 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-log-correlation-log4j2</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
@@ -38,7 +38,7 @@ For Maven add to your `pom.xml`:
For Gradle add to your dependencies:
```groovy
-runtime 'io.opencensus:opencensus-contrib-log-correlation-log4j2:0.16.0'
+runtime 'io.opencensus:opencensus-contrib-log-correlation-log4j2:0.16.1'
```
### Configure the `OpenCensusTraceContextDataInjector`
diff --git a/contrib/log_correlation/stackdriver/README.md b/contrib/log_correlation/stackdriver/README.md
index dec5a439..8d99ff20 100644
--- a/contrib/log_correlation/stackdriver/README.md
+++ b/contrib/log_correlation/stackdriver/README.md
@@ -35,7 +35,7 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-log-correlation-stackdriver</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
@@ -43,7 +43,7 @@ For Maven add to your `pom.xml`:
For Gradle add to your dependencies:
```groovy
-runtime 'io.opencensus:opencensus-contrib-log-correlation-stackdriver:0.16.0'
+runtime 'io.opencensus:opencensus-contrib-log-correlation-stackdriver:0.16.1'
```
### Configure the `OpenCensusTraceLoggingEnhancer`
diff --git a/contrib/monitored_resource_util/README.md b/contrib/monitored_resource_util/README.md
index 6be0c352..9d3c754c 100644
--- a/contrib/monitored_resource_util/README.md
+++ b/contrib/monitored_resource_util/README.md
@@ -16,14 +16,14 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-monitored-resource-util</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
</dependencies>
```
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-contrib-monitored-resource-util:0.16.0'
+compile 'io.opencensus:opencensus-contrib-monitored-resource-util:0.16.1'
```
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master
diff --git a/contrib/spring/README.md b/contrib/spring/README.md
index 27551930..8c740297 100644
--- a/contrib/spring/README.md
+++ b/contrib/spring/README.md
@@ -18,17 +18,17 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-api</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-spring</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-impl</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
<scope>runtime</scope>
</dependency>
@@ -45,9 +45,9 @@ For Maven add to your `pom.xml`:
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-api:0.16.0'
-compile 'io.opencensus:opencensus-contrib-spring:0.16.0'
-runtime 'io.opencensus:opencensus-impl:0.16.0'
+compile 'io.opencensus:opencensus-api:0.16.1'
+compile 'io.opencensus:opencensus-contrib-spring:0.16.1'
+runtime 'io.opencensus:opencensus-impl:0.16.1'
runtime 'org.springframework:spring-aspects:SPRING_VERSION'
```
diff --git a/contrib/spring_sleuth_v1x/README.md b/contrib/spring_sleuth_v1x/README.md
index a05eccb4..3345783b 100644
--- a/contrib/spring_sleuth_v1x/README.md
+++ b/contrib/spring_sleuth_v1x/README.md
@@ -22,7 +22,7 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-spring-sleuth</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
<exclusions>
<exclusion>
<groupId>org.springframework.cloud</groupId>
@@ -39,7 +39,7 @@ For Maven add to your `pom.xml`:
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-contrib-spring-sleuth:0.16.0'
+compile 'io.opencensus:opencensus-contrib-spring-sleuth:0.16.1'
```
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master
diff --git a/contrib/zpages/README.md b/contrib/zpages/README.md
index 4c523ceb..2a535cec 100644
--- a/contrib/zpages/README.md
+++ b/contrib/zpages/README.md
@@ -16,17 +16,17 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-api</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-contrib-zpages</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
</dependency>
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-impl</artifactId>
- <version>0.16.0</version>
+ <version>0.16.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
@@ -34,9 +34,9 @@ For Maven add to your `pom.xml`:
For Gradle add to your dependencies:
```gradle
-compile 'io.opencensus:opencensus-api:0.16.0'
-compile 'io.opencensus:opencensus-contrib-zpages:0.16.0'
-runtime 'io.opencensus:opencensus-impl:0.16.0'
+compile 'io.opencensus:opencensus-api:0.16.1'
+compile 'io.opencensus:opencensus-contrib-zpages:0.16.1'
+runtime 'io.opencensus:opencensus-impl:0.16.1'
```
### Register the Z-Pages