Skip to content

Commit 6b68af7

Browse files
committed
Update changelog & regenerate bindings
1 parent dcadff8 commit 6b68af7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* 0.93.1
2+
* Fix 0.93.0 regression: https://github.com/twistedfall/opencv-rust/issues/620.
3+
* Allow combining several versions of the crate as dependencies, fixes https://github.com/twistedfall/opencv-rust/issues/597.
4+
15
* 0.93.0
26
* Improve automatic slice detection, e.g. `CommandParser::new()` now calculates `argc` automatically.
37
* `find_circles_grid` now can take `None` the `blob_detector` argument.

docs/hub.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,3 +267,9 @@ pub mod hub_prelude {
267267
#[cfg(ocvrs_has_module_xphoto)]
268268
pub use super::xphoto::prelude::*;
269269
}
270+
271+
mod ffi_exports {
272+
use crate::mod_prelude_sys::*;
273+
#[no_mangle] unsafe extern "C" fn ocvrs_create_string_0_93_0(s: *const c_char) -> *mut String { crate::templ::ocvrs_create_string(s) }
274+
#[no_mangle] unsafe extern "C" fn ocvrs_create_byte_string_0_93_0(v: *const u8, len: size_t) -> *mut Vec<u8> { crate::templ::ocvrs_create_byte_string(v, len) }
275+
}

0 commit comments

Comments
 (0)