Skip to content

Commit

Permalink
Merge branch 'main' into bellis/null-guard-batchdatasender-inputstream
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-berg authored Jan 27, 2021
2 parents 09d16a5 + e0d20c0 commit a8d80e4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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).

## [0.11.0] - 2021-01-26
- Merge `telemetry` module into `telemetry-core`
- Remove erroneous `module-info.class` from `telemetry-core` jar

## [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
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-core</artifactId>
<version>0.10.0</version>
<version>0.11.0</version>
</dependency>
<dependency>
<groupId>com.newrelic.telemetry</groupId>
<artifactId>telemetry-http-okhttp</artifactId>
<version>0.10.0</version>
<version>0.11.0</version>
</dependency>
```

Gradle dependencies:

```
implementation("com.newrelic.telemetry:telemetry-core:0.10.0")
implementation("com.newrelic.telemetry:telemetry-http-okhttp:0.10.0")
implementation("com.newrelic.telemetry:telemetry-core:0.11.0")
implementation("com.newrelic.telemetry:telemetry-http-okhttp:0.11.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.11.0
version=0.12.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 a8d80e4

Please sign in to comment.