File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed
Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44### Added
5+
6+ ### Changed
7+
8+ ### Deprecated
9+
10+ ### Removed
11+
12+ ### Fixed
13+
14+ ### Security
15+
16+ ## [ 0.7.0] - 2024-06-30
17+ ### Added
518- ` Thread ` , ` Ruby::thread_create ` /` thread_create_from_fn ` and other thread APIs.
619- ` Mutex ` , ` Ruby::mutex_new ` and other mutex APIs.
720- ` Fiber ` , ` Ruby::fiber_new ` /` fiber_new_from_fn ` and other fiber APIs
461474- Pre-built bindings for Ruby 2.6 - 3.1 on common platforms, build-time
462475 generated bindings otherwise.
463476
464- [ Unreleased ] : https://github.com/matsadler/magnus/compare/0.6.4...HEAD
477+ [ Unreleased ] : https://github.com/matsadler/magnus/compare/0.7.0...HEAD
478+ [ 0.7.0 ] : https://github.com/matsadler/magnus/compare/0.6.4...0.7.0
465479[ 0.6.4 ] : https://github.com/matsadler/magnus/compare/0.6.3...0.6.4
466480[ 0.6.3 ] : https://github.com/matsadler/magnus/compare/0.6.2...0.6.3
467481[ 0.6.2 ] : https://github.com/matsadler/magnus/compare/0.6.1...0.6.2
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ setting the `crate-type` attribute in your `Cargo.toml`.
191191crate-type = [" cdylib" ]
192192
193193[dependencies ]
194- magnus = " 0.6 "
194+ magnus = " 0.7 "
195195```
196196
197197When Ruby loads your extension it calls an 'init' function defined in your
@@ -274,7 +274,7 @@ To call Ruby from a Rust program, enable the `embed` feature:
274274
275275``` toml
276276[dependencies ]
277- magnus = { version = " 0.6 " , features = [" embed" ] }
277+ magnus = { version = " 0.7 " , features = [" embed" ] }
278278```
279279
280280This enables linking to Ruby and gives access to the ` embed ` module.
You can’t perform that action at this time.
0 commit comments