Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHallowell committed Jul 5, 2024
1 parent 0633189 commit f7df7bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cmajor"
description = "Rust bindings for the Cmajor JIT engine."
version = "0.4.0"
version = "0.5.0"
edition = "2021"
license = "GPL-3.0-or-later"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
cmajor = "0.4"
cmajor = "0.5"
```

You will also need to [download the Cmajor library](https://github.com/SoundStacks/cmajor/releases) and tell the crate
Expand All @@ -28,7 +28,7 @@ to find it, either by:

```rust
use {cmajor::Cmajor, std::error::Error};

fn main() -> Result<(), Box<dyn Error>> {
let cmajor = Cmajor::new("path/to/libCmajPerformer.so")?;
}
Expand All @@ -42,7 +42,7 @@ to find it, either by:

```rust
use cmajor::{Cmajor, std::error::Error};

fn main() -> Result<(), Box<dyn Error>> {
let cmajor = Cmajor::new_from_env()?;
}
Expand Down

0 comments on commit f7df7bf

Please sign in to comment.