Skip to content

Commit 1255309

Browse files
authored
chore: release v0.1.2 (#21)
1 parent b8fdd10 commit 1255309

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,19 @@ follows <https://www.conventionalcommits.org/en/v1.0.0/> to track changes.
3737

3838
## [Unreleased]
3939

40-
### Added
40+
## [0.1.2] - 2025-09-07
4141

42-
- Support using `#[dynify]` on remote items ([#17])
42+
### Added
4343

44-
[#17]: https://github.com/loichyan/dynify/pull/17
44+
- Support using `#[dynify]` on remote items ([#17]). This makes it more
45+
convenient to work with foreign async traits.
4546

4647
### Fixed
4748

48-
- Add `Send` and `Sync` bounds for `Buffered` ([#18])
49+
- Add `Send` and `Sync` bounds for `Buffered` ([#18]). This is crucial for
50+
dynify to function in multi-threaded contexts.
4951

52+
[#17]: https://github.com/loichyan/dynify/pull/17
5053
[#18]: https://github.com/loichyan/dynify/pull/18
5154

5255
## [0.1.1] - 2025-08-28
@@ -105,4 +108,5 @@ details.
105108
[0.0.1]: https://github.com/loichyan/dynify/tree/v0.0.1
106109
[0.1.0]: https://github.com/loichyan/dynify/compare/v0.0.1..v0.1.0
107110
[0.1.1]: https://github.com/loichyan/dynify/compare/v0.1.0..v0.1.1
108-
[Unreleased]: https://github.com/loichyan/dynify/compare/v0.1.1..HEAD
111+
[0.1.2]: https://github.com/loichyan/dynify/compare/v0.1.1..v0.1.2
112+
[Unreleased]: https://github.com/loichyan/dynify/compare/v0.1.2..HEAD

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
members = ["macros"]
33

44
[workspace.package]
5-
version = "0.1.1"
5+
version = "0.1.2"
66
authors = ["Loi Chyan <[email protected]>"]
77
license = "MIT OR Apache-2.0"
88
edition = "2021"
99
rust-version = "1.80"
1010
repository = "https://github.com/loichyan/dynify"
1111

1212
[workspace.dependencies]
13+
dynify-macros = { path = "macros", version = "=0.1.2" }
1314
fastrand = "2.3.0"
1415
rstest = { version = "0.25.0", default-features = false }
1516

@@ -41,7 +42,7 @@ macros = ["dep:dynify-macros"]
4142
smallvec = ["dep:smallvec"]
4243

4344
[dependencies]
44-
dynify-macros = { path = "./macros", optional = true }
45+
dynify-macros = { workspace = true, optional = true }
4546
smallvec = { version = "1", optional = true }
4647

4748
[dev-dependencies]

0 commit comments

Comments
 (0)