Skip to content

Commit 6e66410

Browse files
committed
Bump version to 0.10.2
1 parent 958e315 commit 6e66410

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.10.2] = 2025-07-29
9+
### Fixed
10+
- Fix missing watch events in case of `OpCode.multi` notifications ([#82](https://github.com/kezhuw/zookeeper-client-rust/pull/82))
11+
- Log error for unexpected server watch event instead of panic ([#83](https://github.com/kezhuw/zookeeper-client-rust/pull/83))
12+
813
## [0.10.1] = 2025-07-23
914
### Fixed
1015
- Fix overflow panic in calculating delay during cycling endpoints ([#79](https://github.com/kezhuw/zookeeper-client-rust/pull/79))
@@ -28,6 +33,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2833
- **Breaking:** Drop deprecated Client::builder ([#63](https://github.com/kezhuw/zookeeper-client-rust/pull/63))
2934
- **Breaking:** Drop Mozilla tls roots ([#68](https://github.com/kezhuw/zookeeper-client-rust/pull/68))
3035

36+
## [0.9.3] = 2025-07-29
37+
### Fixed
38+
- Fix missing watch events in case of `OpCode.multi` notifications ([#82](https://github.com/kezhuw/zookeeper-client-rust/pull/82))
39+
- Log error for unexpected server watch event instead of panic ([#83](https://github.com/kezhuw/zookeeper-client-rust/pull/83))
40+
41+
## [0.9.2] = 2025-07-23
42+
### Fixed
43+
- Fix overflow panic in calculating delay during cycling endpoints ([#79](https://github.com/kezhuw/zookeeper-client-rust/pull/79))
44+
3145
## [0.9.1] = 2025-04-17
3246
### Fixed
3347
- Mark `futures-rustls` as an optional dependency ([#56](https://github.com/kezhuw/zookeeper-client-rust/pull/56))
@@ -111,6 +125,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111125
- fix!: forbid creation of root node "/" just like delete of it ([7e11a31](https://github.com/kezhuw/zookeeper-client-rust/commit/7e11a316eb65c5a5755abe1c46660393570c65db))
112126
- fix: unwatching revived by failed watch could remove ongoing watching ([d20c161](https://github.com/kezhuw/zookeeper-client-rust/commit/d20c1614c44d6e8115f4f855e6fed9759c64ac0b))
113127

128+
[0.10.2]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.10.1...v0.10.2
129+
[0.10.1]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.10.0...v0.10.1
130+
[0.10.0]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.9.0...v0.10.0
131+
[0.9.3]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.9.2...v0.9.3
132+
[0.9.2]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.9.1...v0.9.2
133+
[0.9.1]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.9.0...v0.9.1
134+
[0.9.0]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.8.0...v0.9.0
135+
[0.8.1]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.8.0...v0.8.1
136+
[0.8.0]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.7.0...v0.8.0
114137
[0.7.1]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.7.0...v0.7.1
115138
[0.7.0]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.6.0...v0.7.0
116139
[0.6.4]: https://github.com/kezhuw/zookeeper-client-rust/compare/v0.6.3...v0.6.4

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zookeeper-client"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
edition = "2021"
55
authors = ["Kezhu Wang <kezhuw@gmail.com>"]
66
description = "ZooKeeper async client"

0 commit comments

Comments
 (0)