Skip to content

Commit

Permalink
Changelog and version bump for 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
56quarters committed Mar 23, 2024
1 parent d465482 commit a95c574
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Changelog

## [v1.3.0](https://github.com/56quarters/cadence/tree/1.3.0) - Unreleased
## [v1.3.0](https://github.com/56quarters/cadence/tree/1.3.0) - 2024-03-23
* Add support for using `u64`, `i32`, and `u32` types as counters per
[#201](https://github.com/56quarters/cadence/pull/201). Thanks to @James-Bartman
for this contribution.
* Add `MetricSink::stats()` method to the `MetricSink` interface to allow
sinks to expose low-level network telemetry per [#203](https://github.com/56quarters/cadence/pull/203).
Thanks to @mlowicki for this contribution.
* Add `StatsdClient::flush()` method to the client to allow time-sensitive
metrics to be flushed sooner than they otherwise might be per
[#200](https://github.com/56quarters/cadence/pull/200). Thanks to @James-Bartman
for this contribution;

## [v1.2.0](https://github.com/56quarters/cadence/tree/1.2.0) - 2024-02-20
* Add `QueuingMetricSinkBuilder` to allow an error handler to be set for
Expand Down
4 changes: 2 additions & 2 deletions cadence-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cadence-macros"
version = "1.2.0"
version = "1.3.0"
authors = ["Nick Pillitteri"]
description = "Macros for Cadence, an extensible Statsd client for Rust"
homepage = "https://github.com/56quarters/cadence"
Expand All @@ -13,7 +13,7 @@ edition = "2021"
autobenches = false

[dependencies]
cadence = { path = "../cadence", version = "1.2" }
cadence = { path = "../cadence", version = "1.3" }

[dev-dependencies]
crossbeam-channel = "0.5.1"
2 changes: 1 addition & 1 deletion cadence/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cadence"
version = "1.2.0"
version = "1.3.0"
authors = ["Nick Pillitteri"]
description = "An extensible Statsd client for Rust"
homepage = "https://github.com/56quarters/cadence"
Expand Down
2 changes: 1 addition & 1 deletion cadence/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ impl StatsdClient {
/// client.count("time-sensitive.keyA", 1);
/// client.count("time-sensitive.keyB", 2);
/// client.count("time-sensitive.keyC", 3);
/// // Any number of time-sensitive metrics ... //
/// // Any number of time-sensitive metrics ...
/// client.flush();
/// ```
pub fn flush(&self) -> MetricResult<()> {
Expand Down

0 comments on commit a95c574

Please sign in to comment.