diff --git a/Cargo.toml b/Cargo.toml index 4099bbb..f692f27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jnat" -version = "0.10.0" +version = "0.10.1" edition = "2021" license = "MIT" description = "A wrapper around the jni crate" diff --git a/integration/main.rs b/integration/main.rs index 41bd654..6168b79 100644 --- a/integration/main.rs +++ b/integration/main.rs @@ -28,7 +28,8 @@ fn get_dylib_name(lib: &str) -> String { } fn setup() { - println!("Remember to run cargo build before running this!"); + println!("Remember to run cargo build before running this"); + println!("If you get weird errors, try running cargo clean"); env::set_var("RUST_APP_LOG", "debug"); pretty_env_logger::init_custom_env("RUST_APP_LOG"); @@ -188,5 +189,7 @@ fn main() { } } + println!(); + teardown(); }