Skip to content

Commit

Permalink
prepare for 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matsadler committed Jun 30, 2024
1 parent 84d917b commit 0937086
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

## [Unreleased]
### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [0.7.0] - 2024-06-30
### Added
- `Thread`, `Ruby::thread_create`/`thread_create_from_fn` and other thread APIs.
- `Mutex`, `Ruby::mutex_new` and other mutex APIs.
- `Fiber`, `Ruby::fiber_new`/`fiber_new_from_fn` and other fiber APIs
Expand Down Expand Up @@ -461,7 +474,8 @@
- Pre-built bindings for Ruby 2.6 - 3.1 on common platforms, build-time
generated bindings otherwise.

[Unreleased]: https://github.com/matsadler/magnus/compare/0.6.4...HEAD
[Unreleased]: https://github.com/matsadler/magnus/compare/0.7.0...HEAD
[0.7.0]: https://github.com/matsadler/magnus/compare/0.6.4...0.7.0
[0.6.4]: https://github.com/matsadler/magnus/compare/0.6.3...0.6.4
[0.6.3]: https://github.com/matsadler/magnus/compare/0.6.2...0.6.3
[0.6.2]: https://github.com/matsadler/magnus/compare/0.6.1...0.6.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ setting the `crate-type` attribute in your `Cargo.toml`.
crate-type = ["cdylib"]

[dependencies]
magnus = "0.6"
magnus = "0.7"
```

When Ruby loads your extension it calls an 'init' function defined in your
Expand Down Expand Up @@ -274,7 +274,7 @@ To call Ruby from a Rust program, enable the `embed` feature:

```toml
[dependencies]
magnus = { version = "0.6", features = ["embed"] }
magnus = { version = "0.7", features = ["embed"] }
```

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

0 comments on commit 0937086

Please sign in to comment.