Skip to content

Commit

Permalink
Merge pull request #181 from newrelic/release/v0.16.0
Browse files Browse the repository at this point in the history
chore(changelog): Update CHANGELOG for v0.16.0
  • Loading branch information
Jonathan Thurman authored Mar 11, 2020
2 parents 562b0a8 + a44769d commit 670a538
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
17 changes: 14 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ workflows:
- lint:
requires:
- checkout_code
- test:
- test-unit:
requires:
- checkout_code
- test-integration:
requires:
- checkout_code
- security-scan:
Expand All @@ -19,7 +22,8 @@ workflows:
- compile:
requires:
- lint
- test
- test-unit
- test-integration
- security-scan
- hold-for-release:
type: approval
Expand Down Expand Up @@ -62,7 +66,7 @@ jobs:
name: Lint
command: make lint

test:
test-unit:
docker:
- image: circleci/golang:1.14
steps:
Expand All @@ -71,6 +75,13 @@ jobs:
- run:
name: Unit Tests
command: make test-unit

test-integration:
docker:
- image: circleci/golang:1.14
steps:
- restore_cache:
key: repo-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Integration Tests
command: make test-integration
Expand Down
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
## [Unreleased]


<a name="v0.16.0"></a>
## [v0.16.0] - 2020-03-11
### Bug Fixes
- **build:** Force pull tags after each checkout

### Documentation Updates
- update community support information

### Features
- **entities:** Add some more details from BrowserApplicationEntity
- **entities:** Return more data on ApmApplicationEntity, and be consistent in what we return between fetch and search

### Refactor
- **entities:** Change Entity.Type type... Add more to the ENUMs


<a name="v0.15.0"></a>
## [v0.15.0] - 2020-03-09
### Bug Fixes
Expand Down Expand Up @@ -329,7 +345,8 @@
- rename packages for clarity, promote Config to the public package


[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.15.0...HEAD
[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.16.0...HEAD
[v0.16.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.15.0...v0.16.0
[v0.15.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.14.0...v0.15.0
[v0.14.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.13.0...v0.14.0
[v0.13.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.12.0...v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// Version of this library
const Version string = "0.15.0"
const Version string = "0.16.0"

0 comments on commit 670a538

Please sign in to comment.