From cf2a23f4d40c5e99d8efdec06dc4305d689e3de9 Mon Sep 17 00:00:00 2001 From: Xi Xia Date: Fri, 8 Jan 2021 13:10:38 -0800 Subject: [PATCH] update readme after releasae of 0.10.0 --- CHANGELOG.md | 7 +++++-- README.md | 8 ++++---- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 020fc9f7..c05b6ed4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Coming soon -- Remove several deprecated APIs. +## [0.10.0] - 2021-01-08 +- Deprecated endpoint and endpointWithPath APIs have been removed +- Add the notion of a notification handler to capture feedback from the TelemetryClient +- Adds a rate limiter on a how much telemetry can be scheduled to be sent +- Batch types are specified in relevant log messages ## [0.9.0] - 2020-10-23 - Fixed telemetry-all to be a modular java build. diff --git a/README.md b/README.md index 2bcef3bd..8aaac1f4 100644 --- a/README.md +++ b/README.md @@ -37,20 +37,20 @@ Maven dependencies: com.newrelic.telemetry telemetry - 0.9.0 + 0.10.0 com.newrelic.telemetry telemetry-http-okhttp - 0.9.0 + 0.10.0 ``` Gradle dependencies: ``` -implementation("com.newrelic.telemetry:telemetry:0.9.0") -implementation("com.newrelic.telemetry:telemetry-http-okhttp:0.9.0") +implementation("com.newrelic.telemetry:telemetry:0.10.0") +implementation("com.newrelic.telemetry:telemetry-http-okhttp:0.10.0") ``` Take a look at the example code in the [telemetry_examples](telemetry_examples) module. diff --git a/gradle.properties b/gradle.properties index cfd98a3b..c9ba99e5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ # Here is where we manage the version group=com.newrelic.telemetry -version=0.10.0 +version=0.11.0 # Set this to true to enable using a local sonatype (for debugging publishing issues) # Start a local sonatype in docker with this command: