Skip to content

Commit

Permalink
subscriber: prepare to release v0.1.1 (#260)
Browse files Browse the repository at this point in the history
<a name="0.1.1"></a>
## 0.1.1 (2022-01-18)

#### Bug Fixes

*  only send *new* tasks/resources/etc over the event channel (#238) ([fdc77e2](fdc77e2))
*  increased default event buffer capacity (#235) ([0cf0aee](0cf0aee))
*  use saturating arithmetic for attribute updates (#234) ([fe82e17](fe82e17))

#### Changes

*  moved ID rewriting from `console-subscriber` to the client (#244) ([095b1ef](095b1ef))
  • Loading branch information
hawkw committed Jan 18, 2022
1 parent 1fe0650 commit 12a4821
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 15 additions & 1 deletion console-subscriber/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
<a name="0.1.0"></a>
<a name="0.1.1"></a>
## 0.1.1 (2022-01-18)


#### Bug Fixes

* only send *new* tasks/resources/etc over the event channel (#238) ([fdc77e28](fdc77e28))
* increased default event buffer capacity (#235) ([0cf0aee](0cf0aee))
* use saturating arithmetic for attribute updates (#234) ([fe82e170](fe82e170))

#### Changes

* moved ID rewriting from `console-subscriber` to the client (#244) ([095b1ef](095b1ef))

## 0.1.0 (2021-12-16)


- Initial release! &#x1f389;
4 changes: 2 additions & 2 deletions console-subscriber/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "console-subscriber"
version = "0.1.0"
version = "0.1.1"
license = "MIT"
edition = "2021"
rust-version = "1.56.0"
Expand Down Expand Up @@ -33,7 +33,7 @@ parking_lot = ["parking_lot_crate", "tracing-subscriber/parking_lot"]
tokio = { version = "^1.15", features = ["sync", "time", "macros", "tracing"] }
tokio-stream = "0.1"
thread_local = "1.1.3"
console-api = { version = "0.1.0", path = "../console-api", features = ["transport"] }
console-api = { version = "0.1.1", path = "../console-api", features = ["transport"] }
tonic = { version = "0.6", features = ["transport"] }
tracing-core = "0.1.18"
tracing = "0.1.26"
Expand Down

0 comments on commit 12a4821

Please sign in to comment.