Skip to content

Commit 0937086

Browse files
committed
prepare for 0.7.0 release
1 parent 84d917b commit 0937086

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
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
@@ -461,7 +474,8 @@
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ setting the `crate-type` attribute in your `Cargo.toml`.
191191
crate-type = ["cdylib"]
192192

193193
[dependencies]
194-
magnus = "0.6"
194+
magnus = "0.7"
195195
```
196196

197197
When 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

280280
This enables linking to Ruby and gives access to the `embed` module.

0 commit comments

Comments
 (0)