diff --git a/CHANGELOG.md b/CHANGELOG.md index dc263540c8..08cdac2509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ ## Unreleased -## 0.26.0 - 2020-04 -- gRPC metrics collection now requires the - [`io.grpc:grpc-census`](https://github.com/grpc/grpc-java/releases/tag/v1.27.0) - artifact in addition to this module. +## 0.26.0 - 2020-03-19 +- feat: Allow users to register the same Meter multiple times without exception (#2017) +- update gRPC (#2024): Since gRPC v1.27.0, census dependency is removed from grpc-core. A grpc-census +artifact now exists to provide interceptor/stream tracer factory that applies census stats/tracing features. +For users not using gRPC’s integration of census, nothing should be affected. Users who want census integration +need to add grpc-census artifact to runtime classpath. +- deps: update GSON (#2025) +- deps: update auth libraries (#2023) +- update guava (#2018) ## 0.25.0 - 2020-02-12 - Add an experimental artifact `opencensus-contrib-observability-ready-util`, that allows users to diff --git a/README.md b/README.md index c8570fe26f..9457945b44 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,14 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' ``` ### Hello "OpenCensus" trace events @@ -182,12 +182,12 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -195,8 +195,8 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` ### How to setup exporters? diff --git a/contrib/appengine_standard_util/README.md b/contrib/appengine_standard_util/README.md index af9bde3271..3805afb7aa 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`: io.opencensus opencensus-appengine-standard-util - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-contrib-appengine-standard-util:0.25.0' +compile 'io.opencensus:opencensus-contrib-appengine-standard-util:0.26.0' ``` [travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master diff --git a/contrib/dropwizard/README.md b/contrib/dropwizard/README.md index 2572ae4bc4..28eb133a11 100644 --- a/contrib/dropwizard/README.md +++ b/contrib/dropwizard/README.md @@ -18,14 +18,14 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-contrib-dropwizard - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-contrib-dropwizard:0.25.0' +compile 'io.opencensus:opencensus-contrib-dropwizard:0.26.0' ``` ### And the following code: diff --git a/contrib/dropwizard5/README.md b/contrib/dropwizard5/README.md index b27ceaf60f..7a0d012b02 100644 --- a/contrib/dropwizard5/README.md +++ b/contrib/dropwizard5/README.md @@ -18,14 +18,14 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-contrib-dropwizard5 - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-contrib-dropwizard5:0.25.0' +compile 'io.opencensus:opencensus-contrib-dropwizard5:0.26.0' ``` ### And the following code: diff --git a/contrib/exemplar_util/README.md b/contrib/exemplar_util/README.md index 531a5f4825..e90884a7c6 100644 --- a/contrib/exemplar_util/README.md +++ b/contrib/exemplar_util/README.md @@ -17,14 +17,14 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-contrib-exemplar-util - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-contrib-exemplar-util:0.25.0' +compile 'io.opencensus:opencensus-contrib-exemplar-util:0.26.0' ``` [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 c89dc40d9f..a1735a15c6 100644 --- a/contrib/grpc_util/README.md +++ b/contrib/grpc_util/README.md @@ -16,14 +16,14 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-contrib-grpc-util - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-contrib-grpc-util:0.25.0' +compile 'io.opencensus:opencensus-contrib-grpc-util:0.26.0' ``` [travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master diff --git a/contrib/http_jaxrs/README.md b/contrib/http_jaxrs/README.md index be7979c8c9..eab04357b9 100644 --- a/contrib/http_jaxrs/README.md +++ b/contrib/http_jaxrs/README.md @@ -15,20 +15,20 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-contrib-http-jaxrs - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-contrib-http-jaxrs:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-contrib-http-jaxrs:0.26.0' ``` ### Usage diff --git a/contrib/http_jetty_client/README.md b/contrib/http_jetty_client/README.md index f6db90f900..f8fdf54ac4 100644 --- a/contrib/http_jetty_client/README.md +++ b/contrib/http_jetty_client/README.md @@ -15,20 +15,20 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-contrib-http-jetty-client - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-contrib-http-jetty-client:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-contrib-http-jetty-client:0.26.0' ``` ## Instrumenting Jetty Http Client diff --git a/contrib/http_servlet/README.md b/contrib/http_servlet/README.md index 0d1527e7d6..6ae04e7377 100644 --- a/contrib/http_servlet/README.md +++ b/contrib/http_servlet/README.md @@ -15,20 +15,20 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-contrib-http-servlet - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-contrib-http-servlet:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-contrib-http-servlet:0.26.0' ``` ## Instrumenting HTTP Servlets diff --git a/contrib/http_util/README.md b/contrib/http_util/README.md index 9fb75f74b9..e2544ddcf0 100644 --- a/contrib/http_util/README.md +++ b/contrib/http_util/README.md @@ -16,20 +16,20 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-contrib-http-util - 0.25.0 + 0.26.0 ``` For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-contrib-http-util:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-contrib-http-util:0.26.0' ``` ## Instrumenting HTTP libraries/frameworks diff --git a/contrib/log_correlation/log4j2/README.md b/contrib/log_correlation/log4j2/README.md index 0e6b0588aa..4af4ead364 100644 --- a/contrib/log_correlation/log4j2/README.md +++ b/contrib/log_correlation/log4j2/README.md @@ -25,7 +25,7 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-contrib-log-correlation-log4j2 - 0.25.0 + 0.26.0 runtime @@ -33,7 +33,7 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -runtime 'io.opencensus:opencensus-contrib-log-correlation-log4j2:0.25.0' +runtime 'io.opencensus:opencensus-contrib-log-correlation-log4j2:0.26.0' ``` ### Configure the `OpenCensusTraceContextDataInjector` diff --git a/contrib/log_correlation/stackdriver/README.md b/contrib/log_correlation/stackdriver/README.md index 27ba502f2a..d5d46f5d89 100644 --- a/contrib/log_correlation/stackdriver/README.md +++ b/contrib/log_correlation/stackdriver/README.md @@ -29,7 +29,7 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-contrib-log-correlation-stackdriver - 0.25.0 + 0.26.0 runtime @@ -37,7 +37,7 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -runtime 'io.opencensus:opencensus-contrib-log-correlation-stackdriver:0.25.0' +runtime 'io.opencensus:opencensus-contrib-log-correlation-stackdriver:0.26.0' ``` ### Configure the `OpenCensusTraceLoggingEnhancer` diff --git a/contrib/spring/README.md b/contrib/spring/README.md index b605e1d3be..1c56209b10 100644 --- a/contrib/spring/README.md +++ b/contrib/spring/README.md @@ -18,17 +18,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-contrib-spring - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -45,9 +45,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-contrib-spring:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-contrib-spring:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' runtime 'org.springframework:spring-aspects:SPRING_VERSION' ``` diff --git a/contrib/spring_sleuth_v1x/README.md b/contrib/spring_sleuth_v1x/README.md index d2dba4312d..39fbb45861 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`: io.opencensus opencensus-contrib-spring-sleuth - 0.25.0 + 0.26.0 org.springframework.cloud @@ -39,7 +39,7 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-contrib-spring-sleuth:0.25.0' +compile 'io.opencensus:opencensus-contrib-spring-sleuth:0.26.0' ``` [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 e3f292483e..12366b1acf 100644 --- a/contrib/zpages/README.md +++ b/contrib/zpages/README.md @@ -16,17 +16,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-contrib-zpages - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -34,9 +34,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-contrib-zpages:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-contrib-zpages:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` ### Register the Z-Pages diff --git a/examples/build.gradle b/examples/build.gradle index 42b9df9501..400d9cc930 100644 --- a/examples/build.gradle +++ b/examples/build.gradle @@ -33,7 +33,7 @@ repositories { group = "io.opencensus" version = "0.27.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION -def opencensusVersion = "0.25.0" // LATEST_OPENCENSUS_RELEASE_VERSION +def opencensusVersion = "0.26.0" // LATEST_OPENCENSUS_RELEASE_VERSION def grpcVersion = "1.22.1" // CURRENT_GRPC_VERSION def prometheusVersion = "0.6.0" def jettyVersion = "9.4.17.v20190418" diff --git a/examples/pom.xml b/examples/pom.xml index 5c881ab424..56d0586fe4 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -12,7 +12,7 @@ UTF-8 9.4.17.v20190418 - 0.25.0 + 0.26.0 1.25.0 diff --git a/examples/spring/servlet/build.gradle b/examples/spring/servlet/build.gradle index 67b3881e08..f90e679ada 100644 --- a/examples/spring/servlet/build.gradle +++ b/examples/spring/servlet/build.gradle @@ -32,7 +32,7 @@ repositories { group = "io.opencensus" version = "0.27.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION -def opencensusVersion = "0.25.0" // LATEST_OPENCENSUS_RELEASE_VERSION +def opencensusVersion = "0.26.0" // LATEST_OPENCENSUS_RELEASE_VERSION def prometheusVersion = "0.6.0" def httpasyncclientVersion = "4.1.4" diff --git a/examples/spring/servlet/pom.xml b/examples/spring/servlet/pom.xml index 5465fd4441..5e6b28d052 100644 --- a/examples/spring/servlet/pom.xml +++ b/examples/spring/servlet/pom.xml @@ -13,7 +13,7 @@ UTF-8 4.1.4 - 0.25.0 + 0.26.0 0.6.0 2.0.5.RELEASE 1.8 diff --git a/exporters/stats/prometheus/README.md b/exporters/stats/prometheus/README.md index c7ea81eef6..5b22558273 100644 --- a/exporters/stats/prometheus/README.md +++ b/exporters/stats/prometheus/README.md @@ -21,17 +21,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-stats-prometheus - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -39,9 +39,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-stats-prometheus:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-stats-prometheus:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` #### Register the exporter diff --git a/exporters/stats/signalfx/README.md b/exporters/stats/signalfx/README.md index 9bc49da7f1..33e462abfc 100644 --- a/exporters/stats/signalfx/README.md +++ b/exporters/stats/signalfx/README.md @@ -27,17 +27,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-stats-signalfx - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -46,9 +46,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-stats-signalfx:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-stats-signalfx:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` ### Register the exporter diff --git a/exporters/stats/stackdriver/README.md b/exporters/stats/stackdriver/README.md index 2d07a5bf6d..c0b7ba3dc5 100644 --- a/exporters/stats/stackdriver/README.md +++ b/exporters/stats/stackdriver/README.md @@ -30,17 +30,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-stats-stackdriver - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -48,9 +48,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-stats-stackdriver:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-stats-stackdriver:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` #### Register the exporter diff --git a/exporters/trace/datadog/README.md b/exporters/trace/datadog/README.md index 52e44c7065..2e70ac48da 100644 --- a/exporters/trace/datadog/README.md +++ b/exporters/trace/datadog/README.md @@ -21,17 +21,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-trace-datadog - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -39,9 +39,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-trace-datadog:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-trace-datadog:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` #### Register the exporter diff --git a/exporters/trace/elasticsearch/README.md b/exporters/trace/elasticsearch/README.md index 8af4a9c162..9d36b66bab 100644 --- a/exporters/trace/elasticsearch/README.md +++ b/exporters/trace/elasticsearch/README.md @@ -26,17 +26,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-trace-elasticsearch - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -45,9 +45,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-trace-elasticsearch:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-trace-elasticsearch:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` #### Register the exporter diff --git a/exporters/trace/instana/README.md b/exporters/trace/instana/README.md index 18f50a9ec9..075feea849 100644 --- a/exporters/trace/instana/README.md +++ b/exporters/trace/instana/README.md @@ -27,17 +27,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-trace-instana - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -45,9 +45,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-trace-instana:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-trace-instana:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` #### Register the exporter diff --git a/exporters/trace/jaeger/README.md b/exporters/trace/jaeger/README.md index e2b4d5bbd7..cce5016057 100644 --- a/exporters/trace/jaeger/README.md +++ b/exporters/trace/jaeger/README.md @@ -40,17 +40,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-trace-jaeger - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -58,9 +58,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-trace-jaeger:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-trace-jaeger:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` #### Register the exporter diff --git a/exporters/trace/logging/README.md b/exporters/trace/logging/README.md index 6e965caf1d..4c04a52f5f 100644 --- a/exporters/trace/logging/README.md +++ b/exporters/trace/logging/README.md @@ -15,17 +15,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-trace-logging - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -33,9 +33,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-trace-logging:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-trace-logging:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` ### Register the exporter diff --git a/exporters/trace/ocagent/README.md b/exporters/trace/ocagent/README.md index bdadcd586f..72e81cb3e8 100644 --- a/exporters/trace/ocagent/README.md +++ b/exporters/trace/ocagent/README.md @@ -13,23 +13,23 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-trace-ocagent - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime io.netty netty-tcnative-boringssl-static - 0.25.0.Final + 0.26.0.Final runtime @@ -37,9 +37,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-trace-ocagent:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-trace-ocagent:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' runtime 'io.netty:netty-tcnative-boringssl-static:2.0.20.Final' ``` diff --git a/exporters/trace/stackdriver/README.md b/exporters/trace/stackdriver/README.md index f29f4fe54c..c1425eadd6 100644 --- a/exporters/trace/stackdriver/README.md +++ b/exporters/trace/stackdriver/README.md @@ -34,17 +34,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-trace-stackdriver - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -52,9 +52,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-trace-stackdriver:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-trace-stackdriver:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` #### Register the exporter diff --git a/exporters/trace/zipkin/README.md b/exporters/trace/zipkin/README.md index cc925b96d5..43841dffe3 100644 --- a/exporters/trace/zipkin/README.md +++ b/exporters/trace/zipkin/README.md @@ -33,17 +33,17 @@ For Maven add to your `pom.xml`: io.opencensus opencensus-api - 0.25.0 + 0.26.0 io.opencensus opencensus-exporter-trace-zipkin - 0.25.0 + 0.26.0 io.opencensus opencensus-impl - 0.25.0 + 0.26.0 runtime @@ -51,9 +51,9 @@ For Maven add to your `pom.xml`: For Gradle add to your dependencies: ```groovy -compile 'io.opencensus:opencensus-api:0.25.0' -compile 'io.opencensus:opencensus-exporter-trace-zipkin:0.25.0' -runtime 'io.opencensus:opencensus-impl:0.25.0' +compile 'io.opencensus:opencensus-api:0.26.0' +compile 'io.opencensus:opencensus-exporter-trace-zipkin:0.26.0' +runtime 'io.opencensus:opencensus-impl:0.26.0' ``` #### Register the exporter