Skip to content

Commit

Permalink
bump version to 0.6.0 before release
Browse files Browse the repository at this point in the history
  • Loading branch information
matsadler committed Jul 27, 2023
1 parent b89ef33 commit d8f862f
Show file tree
Hide file tree
Showing 9 changed files with 205 additions and 133 deletions.
18 changes: 15 additions & 3 deletions 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.6.0] - Unreleased
### Added
- `value::Opaque` can be used to wrap a Ruby type to make it `Send` + `Sync`.
- `value::Lazy` lazily initialises a Ruby value so it can be assigned to a
`static`.
Expand Down Expand Up @@ -86,8 +99,6 @@
### Fixed
- `RFloat::from_value` now returns `None` when value is a `Flonum`.

### Security

## [0.5.3] - 2023-04-07
### Added
- `Value::as_value` method that can be called on any Ruby type (as all Ruby
Expand Down Expand Up @@ -387,7 +398,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.5.3...HEAD
[Unreleased]: https://github.com/matsadler/magnus/compare/0.6.0...HEAD
[0.6.0]: https://github.com/matsadler/magnus/compare/0.5.3...0.6.0
[0.5.3]: https://github.com/matsadler/magnus/compare/0.5.2...0.5.3
[0.5.2]: https://github.com/matsadler/magnus/compare/0.5.1...0.5.2
[0.5.1]: https://github.com/matsadler/magnus/compare/0.5.0...0.5.1
Expand Down
62 changes: 37 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magnus"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
description = "High level Ruby bindings. Write Ruby extension gems in Rust, or call Ruby code from a Rust binary."
keywords = ["ruby", "rubygem", "extension", "gem"]
Expand All @@ -26,7 +26,7 @@ deprecated-send-sync-value = []

[dependencies]
bytes = { version = "1", optional = true }
magnus-macros = { version = "0.4.0", path = "magnus-macros" }
magnus-macros = { version = "0.6.0", path = "magnus-macros" }
rb-sys = { version = "0.9.77", default-features = false, features = ["bindgen-rbimpls", "bindgen-deprecated-types"] }
seq-macro = "0.3"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ setting the `crate-type` attribute in your `Cargo.toml`.
crate-type = ["cdylib"]

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

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

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

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

0 comments on commit d8f862f

Please sign in to comment.