Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
twistedfall committed Jan 24, 2025
1 parent 17c873d commit 97dcbd0
Show file tree
Hide file tree
Showing 3 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
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/twistedfall/opencv-rust"
readme = "README.md"
keywords = ["opencv", "vision"]
license = "MIT"
version = "0.94.1"
version = "0.94.2"
edition = "2021"
rust-version = "1.77.0"
authors = ["Pro <[email protected]>", "Mathieu Poumeyrol <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ generation) are installed in your system.
Update your Cargo.toml

```toml
opencv = "0.94.1"
opencv = "0.94.2"
```

Import prelude
Expand Down
4 changes: 2 additions & 2 deletions docs/hub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ pub mod hub_prelude {

mod ffi_exports {
use crate::mod_prelude_sys::*;
#[no_mangle] unsafe extern "C" fn ocvrs_create_string_0_94_1(s: *const c_char) -> *mut String { crate::templ::ocvrs_create_string(s) }
#[no_mangle] unsafe extern "C" fn ocvrs_create_byte_string_0_94_1(v: *const u8, len: size_t) -> *mut Vec<u8> { crate::templ::ocvrs_create_byte_string(v, len) }
#[no_mangle] unsafe extern "C" fn ocvrs_create_string_0_94_2(s: *const c_char) -> *mut String { crate::templ::ocvrs_create_string(s) }
#[no_mangle] unsafe extern "C" fn ocvrs_create_byte_string_0_94_2(v: *const u8, len: size_t) -> *mut Vec<u8> { crate::templ::ocvrs_create_byte_string(v, len) }
}

0 comments on commit 97dcbd0

Please sign in to comment.