Skip to content

Commit 70e3eae

Browse files
committed
chore: Release
1 parent d22f274 commit 70e3eae

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77
keywords = ["opencv", "vision", "cv"]
88
categories = ["api-bindings", "computer-vision", "external-ffi-bindings", "multimedia"]
99
license = "MIT"
10-
version = "0.95.1"
10+
version = "0.96.0"
1111
# bump edition to 2024 when MSRV is 1.85
1212
edition = "2021"
1313
rust-version = "1.81.0"
@@ -35,7 +35,7 @@ rgb = { version = "0.8.20", default-features = false, features = ["argb"], optio
3535
windows = { version = "0.59", features = ["Win32_Graphics_Direct3D9", "Win32_Graphics_Direct3D10", "Win32_Graphics_Direct3D11"] }
3636

3737
[build-dependencies]
38-
opencv-binding-generator = { version = "0.97.0", path = "binding-generator" }
38+
opencv-binding-generator = { version = "0.98.0", path = "binding-generator" }
3939
cc = { version = "1.0.83", features = ["parallel"] }
4040
dunce = "1"
4141
# jobserver-0.1.25 is the first one that has Client::available() method
@@ -49,7 +49,7 @@ vcpkg = "0.2.9"
4949
[dev-dependencies]
5050
matches = "0.1"
5151
# copy of build-dependencies because we need to test methods of the build script
52-
opencv-binding-generator = { version = "0.97.0", path = "binding-generator" }
52+
opencv-binding-generator = { version = "0.98.0", path = "binding-generator" }
5353
cc = { version = "1.0.83", features = ["parallel"] }
5454
dunce = "1"
5555
# jobserver-0.1.25 is the first one that has Client::available() method

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ generation) are installed in your system.
2020
Update your Cargo.toml
2121

2222
```toml
23-
opencv = "0.95.1"
23+
opencv = "0.96.0"
2424
```
2525

2626
Import prelude

binding-generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "opencv-binding-generator"
33
description = "Binding generator for opencv crate"
44
repository = "https://github.com/twistedfall/opencv-rust"
55
readme = "README.md"
6-
version = "0.97.0"
6+
version = "0.98.0"
77
license = "MIT"
88
authors = ["Pro <[email protected]>"]
99
edition = "2021"

docs/hub.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ pub mod hub_prelude {
144144

145145
mod ffi_exports {
146146
use crate::mod_prelude_sys::*;
147-
#[no_mangle] unsafe extern "C" fn ocvrs_create_string_0_95_1(s: *const c_char) -> *mut String { unsafe { crate::templ::ocvrs_create_string(s) } }
148-
#[no_mangle] unsafe extern "C" fn ocvrs_create_byte_string_0_95_1(v: *const u8, len: size_t) -> *mut Vec<u8> { unsafe { crate::templ::ocvrs_create_byte_string(v, len) } }
147+
#[no_mangle] unsafe extern "C" fn ocvrs_create_string_0_96_0(s: *const c_char) -> *mut String { unsafe { crate::templ::ocvrs_create_string(s) } }
148+
#[no_mangle] unsafe extern "C" fn ocvrs_create_byte_string_0_96_0(v: *const u8, len: size_t) -> *mut Vec<u8> { unsafe { crate::templ::ocvrs_create_byte_string(v, len) } }
149149
}

0 commit comments

Comments
 (0)