Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #120 from newrelic/0.7.0_release_branch
Browse files Browse the repository at this point in the history
0.7.0 release branch
  • Loading branch information
jasonjkeller authored Feb 18, 2021
2 parents ae867ea + ec68e12 commit e6f420c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +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).

## [0.7.0] - TBD
- Update io.micrometer:micrometer-core to 1.6.3
- Update com.newrelic.telemetry:telemetry to 0.10.0
## [0.8.0] - TBD

## [0.7.0] - 2021-02-18
- Update io.micrometer:micrometer-core to 1.6.4
- Update com.newrelic.telemetry:telemetry to com.newrelic.telemetry:telemetry-core 0.11.0

## [0.6.0] - 2020-10-27
- **BREAKING CHANGE**: [Repackage](https://github.com/newrelic/micrometer-registry-newrelic/pull/104) registry class to `com.newrelic.telemetry.micrometer.NewRelicRegistry`.
Expand Down
12 changes: 9 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,22 @@ googleJavaFormat {
}

dependencies {
api("io.micrometer:micrometer-core:1.6.3")
api("com.newrelic.telemetry:telemetry:0.10.0")
api("io.micrometer:micrometer-core:1.6.4")
api("com.newrelic.telemetry:telemetry-core:0.11.0")
implementation("org.slf4j:slf4j-api:1.7.30")

testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0")
testRuntimeOnly("org.slf4j:slf4j-simple:1.7.30")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
testImplementation("org.mockito:mockito-core:3.2.4")
testImplementation("org.mockito:mockito-junit-jupiter:3.2.4")
testImplementation("org.mock-server:mockserver-netty:5.11.1")
testImplementation("org.mock-server:mockserver-netty:5.11.2")
constraints {
testImplementation("org.apache.httpcomponents:httpclient:4.5.13") {
because("previous versions trigger Snyk security warnings")
}
}

}

java {
Expand Down

0 comments on commit e6f420c

Please sign in to comment.