Skip to content

Commit

Permalink
Merge pull request #265 from newrelic/post-0.10.0-release
Browse files Browse the repository at this point in the history
update readme after release of 0.10.0
  • Loading branch information
XiXiaPdx authored Jan 8, 2021
2 parents 4a525a0 + cf2a23f commit 6142aa5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ Maven dependencies:
<dependency>
<groupId>com.newrelic.telemetry</groupId>
<artifactId>telemetry</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>com.newrelic.telemetry</groupId>
<artifactId>telemetry-http-okhttp</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency>
```

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.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6142aa5

Please sign in to comment.