Skip to content

Commit

Permalink
bump version for 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matsadler committed Nov 19, 2022
1 parent 471c140 commit 00f3fb3
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magnus"
version = "0.3.2"
version = "0.4.0"
authors = ["Mat Sadler <[email protected]>"]
edition = "2018"
resolver = "2"
Expand All @@ -23,8 +23,8 @@ rb-sys-interop = []
ruby-static = ["rb-sys/ruby-static"]

[dependencies]
magnus-macros = { version = "0.1.0", path = "magnus-macros" }
rb-sys = { version = "~0.9.44", default-features = false, features = ["bindgen-rbimpls", "bindgen-deprecated-types"] }
magnus-macros = { version = "0.2.0", path = "magnus-macros" }
rb-sys = { version = "0.9.44", default-features = false, features = ["bindgen-rbimpls", "bindgen-deprecated-types"] }

[dev-dependencies]
magnus = { path = ".", features = ["embed", "rb-sys-interop"] }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ setting the `crate-type` attribute in your `Cargo.toml`.
crate-type = ["cdylib"]

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

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

This enables linking to Ruby and gives access to the `embed` module.
Expand Down
4 changes: 2 additions & 2 deletions examples/custom_exception_ruby/ext/ahriman/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 examples/custom_exception_rust/ext/ahriman/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 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.

2 changes: 1 addition & 1 deletion magnus-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magnus-macros"
version = "0.1.0"
version = "0.2.0"
authors = ["Mat Sadler <[email protected]>"]
edition = "2018"
description = "Derive and proc macros for magnus"
Expand Down

0 comments on commit 00f3fb3

Please sign in to comment.