misc: prepare for release

This commit is contained in:
Toby Lawrence 2019-10-18 14:57:11 -04:00
parent 955bc0f265
commit 591f4dac18
No known key found for this signature in database
GPG Key ID: 3BB201B0EEE9212E
2 changed files with 14 additions and 0 deletions

View File

@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.12.0] - 2019-10-18
### Changed
- Rename `Sink::record_counter` to `increment_counter`, `Sink::record_gauge` to `update_gauge`. (#47)
- Rename `Receiver::get_controller` and `Receiver::get_sink` to `controller` and `sink`, respectively. (#48)
- Switch to the new updated `Recorder` trait from `metrics`. (#47)
### Fixed
- Fixed some broken tests and incorrect documentation. (#53)
## [0.11.0] - 2019-07-29
### Added
- Metrics now support labels. (#27)

View File

@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.12.0] - 2019-10-18
### Changed
- Improved documentation. (#44, #45, #46)
- Renamed `Recorder::record_counter` to `increment_counter` and `Recorder::record_gauge` to `update_gauge`. (#47)
## [0.11.1] - 2019-08-09
### Changed
- Fixed a bug with macros calling inner macros without a fully qualified name.