Skip to content

Commit

Permalink
release: prepare v1.16.0 (#186)
Browse files Browse the repository at this point in the history
There were several v2 releases that were unusable because
they were incomplete according to Go's semantic versioning
strategy. Changes that appeared in those unusable v2
releases are consolidated into this minor release.
  • Loading branch information
robbkidd authored Jul 13, 2022
1 parent 4a72aea commit 8af08e4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 21 deletions.
32 changes: 12 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,30 @@
# libhoney Changelog

## 2.2.0 2022-07-13
## 1.16.0 2022-07-13

There were several v2 releases that were unusable because they were incomplete according to Go's semantic versioning strategy.
Changes that appeared in those unusable v2 releases are consolidated into this minor release.

### ⚠️ Breaking Changes ⚠️

Minimum Go version required is 1.14

### Enhancements

- Update default dataset name for non-classic API keys (#170) | [@MikeGoldsmith](https://github.com/MikeGoldsmith)
- Add support to retrieve team and environment (#183) | [@MikeGoldsmith](https://github.com/MikeGoldsmith)

### Maintenance

- maint: drop support for go before 1.14 (#164) | [lizthegrey](https://github.com/lizthegrey)
- maint: add go 1.18 to CI (#172) | [@vreynolds](https://github.com/vreynolds)
- Fix race condition in test and other test bugs (#162) | [@kentquirk](https://github.com/kentquirk)
- Update examples (#184) | [@vreynolds](https://github.com/vreynolds)
- Build example app during CI test phase (#179) | [@MikeGoldsmith](https://github.com/MikeGoldsmith)
- Bump github.com/stretchr/testify from 1.7.0 to 1.8.0 (#174, #181) | [dependabot](https://github.com/dependabot)
- Bump github.com/stretchr/testify from 1.6.1 to 1.8.0 (#111, #174, #181) | [dependabot](https://github.com/dependabot)
- Bump github.com/klauspost/compress from 1.13.6 to 1.15.7 (#175, #177, #180, #182) | [dependabot](https://github.com/dependabot)
- Bump github.com/DataDog/zstd from 1.5.0 to 1.5.2 (#178) | [dependabot](https://github.com/dependabot)

## 2.1.0 2022-03-28

### Enhancements

- Update default dataset name for non-classic API keys (#170) | [@MikeGoldsmith](https://github.com/MikeGoldsmith)

## 2.0.0 2022-02-10

### !!! Breaking Changes !!!

Minimum Go version required is 1.14

### Maintenance

- Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 (#111) | [dependabot](https://github.com/dependabot)
- [go] drop support for go before 1.14 (#164) | [lizthegrey](https://github.com/lizthegrey)
- Fix race condition in test and other test bugs (#162) | [@kentquirk](https://github.com/kentquirk)

## 1.15.8 2022-01-05

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion libhoney.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (
defaultAPIHost = "https://api.honeycomb.io/"
defaultClassicDataset = "libhoney-go dataset"
defaultDataset = "unknown_dataset"
version = "2.2.0"
version = "1.16.0"

// DefaultMaxBatchSize how many events to collect in a batch
DefaultMaxBatchSize = 50
Expand Down

0 comments on commit 8af08e4

Please sign in to comment.