Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.

Commit 655ca67

Browse files
authored
Bump document version (#2053)
* Update release versions for all readme and build files. * Update changelog
1 parent c590a0b commit 655ca67

File tree

29 files changed

+126
-120
lines changed

29 files changed

+126
-120
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Unreleased
2-
- feat: Allow users to specify a metric display name prefix, separately from the metric name prefix
2+
3+
## 0.27.0 - 2020-08-14
4+
- deps: update protobuf (#2029)
5+
- Update release versions for all readme and build files. (#2028)
6+
- deps: update Guava to 29.0 (#2032)
7+
- Add more InstanaExporterHandler tests (#2014)
8+
- feat: Allow users to specify a metric display name prefix, separately from the metric name prefix (#2050)
39

410
## 0.26.0 - 2020-03-19
511
- feat: Allow users to register the same Meter multiple times without exception (#2017)

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ For Maven add to your `pom.xml`:
3232
<dependency>
3333
<groupId>io.opencensus</groupId>
3434
<artifactId>opencensus-api</artifactId>
35-
<version>0.26.0</version>
35+
<version>0.27.0</version>
3636
</dependency>
3737
</dependencies>
3838
```
3939

4040
For Gradle add to your dependencies:
4141
```groovy
42-
compile 'io.opencensus:opencensus-api:0.26.0'
42+
compile 'io.opencensus:opencensus-api:0.27.0'
4343
```
4444

4545
### Hello "OpenCensus" trace events
@@ -182,21 +182,21 @@ For Maven add to your `pom.xml`:
182182
<dependency>
183183
<groupId>io.opencensus</groupId>
184184
<artifactId>opencensus-api</artifactId>
185-
<version>0.26.0</version>
185+
<version>0.27.0</version>
186186
</dependency>
187187
<dependency>
188188
<groupId>io.opencensus</groupId>
189189
<artifactId>opencensus-impl</artifactId>
190-
<version>0.26.0</version>
190+
<version>0.27.0</version>
191191
<scope>runtime</scope>
192192
</dependency>
193193
</dependencies>
194194
```
195195

196196
For Gradle add to your dependencies:
197197
```groovy
198-
compile 'io.opencensus:opencensus-api:0.26.0'
199-
runtime 'io.opencensus:opencensus-impl:0.26.0'
198+
compile 'io.opencensus:opencensus-api:0.27.0'
199+
runtime 'io.opencensus:opencensus-impl:0.27.0'
200200
```
201201

202202
### How to setup exporters?

contrib/appengine_standard_util/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ For Maven add to your `pom.xml`:
1616
<dependency>
1717
<groupId>io.opencensus</groupId>
1818
<artifactId>opencensus-appengine-standard-util</artifactId>
19-
<version>0.26.0</version>
19+
<version>0.27.0</version>
2020
</dependency>
2121
</dependencies>
2222
```
2323

2424
For Gradle add to your dependencies:
2525
```groovy
26-
compile 'io.opencensus:opencensus-contrib-appengine-standard-util:0.26.0'
26+
compile 'io.opencensus:opencensus-contrib-appengine-standard-util:0.27.0'
2727
```
2828

2929
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master

contrib/dropwizard/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ For Maven add to your `pom.xml`:
1818
<dependency>
1919
<groupId>io.opencensus</groupId>
2020
<artifactId>opencensus-contrib-dropwizard</artifactId>
21-
<version>0.26.0</version>
21+
<version>0.27.0</version>
2222
</dependency>
2323
</dependencies>
2424
```
2525

2626
For Gradle add to your dependencies:
2727
```groovy
28-
compile 'io.opencensus:opencensus-contrib-dropwizard:0.26.0'
28+
compile 'io.opencensus:opencensus-contrib-dropwizard:0.27.0'
2929
```
3030

3131
### And the following code:

contrib/dropwizard5/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ For Maven add to your `pom.xml`:
1818
<dependency>
1919
<groupId>io.opencensus</groupId>
2020
<artifactId>opencensus-contrib-dropwizard5</artifactId>
21-
<version>0.26.0</version>
21+
<version>0.27.0</version>
2222
</dependency>
2323
</dependencies>
2424
```
2525

2626
For Gradle add to your dependencies:
2727
```groovy
28-
compile 'io.opencensus:opencensus-contrib-dropwizard5:0.26.0'
28+
compile 'io.opencensus:opencensus-contrib-dropwizard5:0.27.0'
2929
```
3030

3131
### And the following code:

contrib/exemplar_util/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ For Maven add to your `pom.xml`:
1717
<dependency>
1818
<groupId>io.opencensus</groupId>
1919
<artifactId>opencensus-contrib-exemplar-util</artifactId>
20-
<version>0.26.0</version>
20+
<version>0.27.0</version>
2121
</dependency>
2222
</dependencies>
2323
```
2424

2525
For Gradle add to your dependencies:
2626
```groovy
27-
compile 'io.opencensus:opencensus-contrib-exemplar-util:0.26.0'
27+
compile 'io.opencensus:opencensus-contrib-exemplar-util:0.27.0'
2828
```
2929

3030
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master

contrib/grpc_util/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ For Maven add to your `pom.xml`:
1616
<dependency>
1717
<groupId>io.opencensus</groupId>
1818
<artifactId>opencensus-contrib-grpc-util</artifactId>
19-
<version>0.26.0</version>
19+
<version>0.27.0</version>
2020
</dependency>
2121
</dependencies>
2222
```
2323

2424
For Gradle add to your dependencies:
2525
```groovy
26-
compile 'io.opencensus:opencensus-contrib-grpc-util:0.26.0'
26+
compile 'io.opencensus:opencensus-contrib-grpc-util:0.27.0'
2727
```
2828

2929
[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master

contrib/http_jaxrs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ For Maven add to your `pom.xml`:
1515
<dependency>
1616
<groupId>io.opencensus</groupId>
1717
<artifactId>opencensus-api</artifactId>
18-
<version>0.26.0</version>
18+
<version>0.27.0</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.opencensus</groupId>
2222
<artifactId>opencensus-contrib-http-jaxrs</artifactId>
23-
<version>0.26.0</version>
23+
<version>0.27.0</version>
2424
</dependency>
2525
</dependencies>
2626
```
2727

2828
For Gradle add to your dependencies:
2929
```groovy
30-
compile 'io.opencensus:opencensus-api:0.26.0'
31-
compile 'io.opencensus:opencensus-contrib-http-jaxrs:0.26.0'
30+
compile 'io.opencensus:opencensus-api:0.27.0'
31+
compile 'io.opencensus:opencensus-contrib-http-jaxrs:0.27.0'
3232
```
3333

3434
### Usage

contrib/http_jetty_client/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ For Maven add to your `pom.xml`:
1515
<dependency>
1616
<groupId>io.opencensus</groupId>
1717
<artifactId>opencensus-api</artifactId>
18-
<version>0.26.0</version>
18+
<version>0.27.0</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.opencensus</groupId>
2222
<artifactId>opencensus-contrib-http-jetty-client</artifactId>
23-
<version>0.26.0</version>
23+
<version>0.27.0</version>
2424
</dependency>
2525
</dependencies>
2626
```
2727

2828
For Gradle add to your dependencies:
2929
```groovy
30-
compile 'io.opencensus:opencensus-api:0.26.0'
31-
compile 'io.opencensus:opencensus-contrib-http-jetty-client:0.26.0'
30+
compile 'io.opencensus:opencensus-api:0.27.0'
31+
compile 'io.opencensus:opencensus-contrib-http-jetty-client:0.27.0'
3232
```
3333

3434
## Instrumenting Jetty Http Client

contrib/http_servlet/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ For Maven add to your `pom.xml`:
1515
<dependency>
1616
<groupId>io.opencensus</groupId>
1717
<artifactId>opencensus-api</artifactId>
18-
<version>0.26.0</version>
18+
<version>0.27.0</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.opencensus</groupId>
2222
<artifactId>opencensus-contrib-http-servlet</artifactId>
23-
<version>0.26.0</version>
23+
<version>0.27.0</version>
2424
</dependency>
2525
</dependencies>
2626
```
2727

2828
For Gradle add to your dependencies:
2929
```groovy
30-
compile 'io.opencensus:opencensus-api:0.26.0'
31-
compile 'io.opencensus:opencensus-contrib-http-servlet:0.26.0'
30+
compile 'io.opencensus:opencensus-api:0.27.0'
31+
compile 'io.opencensus:opencensus-contrib-http-servlet:0.27.0'
3232
```
3333

3434
## Instrumenting HTTP Servlets

0 commit comments

Comments
 (0)