From f7df7bf4d7512ba98b3aae68110c457f322b3fda Mon Sep 17 00:00:00 2001 From: James Hallowell <5460955+JamesHallowell@users.noreply.github.com> Date: Fri, 5 Jul 2024 21:39:41 +0100 Subject: [PATCH] Bump version --- Cargo.toml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6d4e9ef..9303f7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.md b/README.md index 9191441..da12a51 100644 --- a/README.md +++ b/README.md @@ -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 @@ -28,7 +28,7 @@ to find it, either by: ```rust use {cmajor::Cmajor, std::error::Error}; - + fn main() -> Result<(), Box> { let cmajor = Cmajor::new("path/to/libCmajPerformer.so")?; } @@ -42,7 +42,7 @@ to find it, either by: ```rust use cmajor::{Cmajor, std::error::Error}; - + fn main() -> Result<(), Box> { let cmajor = Cmajor::new_from_env()?; }