File tree Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 22members = [" macros" ]
33
44[workspace .package ]
5- version = " 0.1.1 "
5+ version = " 0.1.2 "
66authors = [
" Loi Chyan <[email protected] >" ]
77license = " MIT OR Apache-2.0"
88edition = " 2021"
99rust-version = " 1.80"
1010repository = " https://github.com/loichyan/dynify"
1111
1212[workspace .dependencies ]
13+ dynify-macros = { path = " macros" , version = " =0.1.2" }
1314fastrand = " 2.3.0"
1415rstest = { version = " 0.25.0" , default-features = false }
1516
@@ -41,7 +42,7 @@ macros = ["dep:dynify-macros"]
4142smallvec = [" dep:smallvec" ]
4243
4344[dependencies ]
44- dynify-macros = { path = " ./macros " , optional = true }
45+ dynify-macros = { workspace = true , optional = true }
4546smallvec = { version = " 1" , optional = true }
4647
4748[dev-dependencies ]
You can’t perform that action at this time.
0 commit comments