Skip to content

Commit

Permalink
bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matsadler committed May 18, 2022
1 parent 91bfd47 commit b7d5112
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 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.3.0] - 2022-05-18
### Added
- `RString::new_shared` and `RString::new_frozen`.
- `encoding` module, including `encoding::Index` and `RbEncoding` types.
- `RString::enc_coderange` and related methods.
Expand Down Expand Up @@ -66,8 +79,6 @@
- panicking in the closure passed to `RHash::foreach` won't result in undefined
behaviour.

### Security

## [0.2.1] - 2022-04-03

### Fixed
Expand Down Expand Up @@ -128,7 +139,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.2.1...HEAD
[Unreleased]: https://github.com/matsadler/magnus/compare/0.3.0...HEAD
[0.3.0]: https://github.com/matsadler/magnus/compare/0.2.1...0.3.0
[0.2.1]: https://github.com/matsadler/magnus/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/matsadler/magnus/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/matsadler/magnus/tree/0.1.0
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magnus"
version = "0.2.1"
version = "0.3.0"
authors = ["Mat Sadler <[email protected]>"]
edition = "2018"
resolver = "2"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ setting the `crate-type` attribute in your `Cargo.toml`.
crate-type = ["cdylib"]

[dependencies]
magnus = "0.2"
magnus = "0.3"
```

When Ruby loads your extension it calls an 'init' function defined in your
Expand Down Expand Up @@ -320,7 +320,7 @@ To call Ruby from a Rust program, enable the `embed` feature:
**`Cargo.toml`**
```toml
[dependencies]
magnus = { version = "0.2", features = ["embed"] }
magnus = { version = "0.3", features = ["embed"] }
```

This enables linking to Ruby and gives access to the `embed` module.
Expand Down
2 changes: 1 addition & 1 deletion examples/rust_blank/ext/rust_blank/Cargo.lock

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

0 comments on commit b7d5112

Please sign in to comment.