Skip to content

Commit

Permalink
v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MaulingMonkey committed Aug 16, 2019
1 parent 4063e23 commit ceaf5ec
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions jni-android-sys-gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jni-android-sys-gen"
version = "0.0.6"
version = "0.0.7"
publish = false
authors = ["MaulingMonkey <git@maulingmonkey.com>"]
edition = "2018"
Expand All @@ -10,6 +10,6 @@ license = "MIT OR Apache-2.0"

[dependencies]
bugsalot = { version = "0.1.4" }
jni-glue = { version = "=0.0.6", path = "../jni-glue" }
jni-bindgen = { version = "=0.0.6", path = "../jni-bindgen" }
jni-glue = { version = "=0.0.7", path = "../jni-glue" }
jni-bindgen = { version = "=0.0.7", path = "../jni-bindgen" }
clap = { version = "2.33.0", features = ["yaml"] }
6 changes: 3 additions & 3 deletions jni-android-sys/Cargo.toml.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["."]

[package]
name = "jni-android-sys"
version = "0.0.6"
version = "0.0.7"
authors = ["MaulingMonkey <git@maulingmonkey.com>"]
edition = "2018"
description = "Autogenerated glue code for access Android JVM APIs from Rust"
Expand All @@ -16,10 +16,10 @@ include = ["/jni-bindgen.toml", "/src/**.rs", "/Cargo.toml", "../LICENSE-MIT", "

[dependencies]
cfg-if = "0.1.9"
jni-glue = { version = "=0.0.6", path = "../jni-glue" }
jni-glue = { version = "=0.0.7", path = "../jni-glue" }

[build-dependencies]
jni-bindgen = { version = "=0.0.6", path = "../jni-bindgen" }
jni-bindgen = { version = "=0.0.7", path = "../jni-bindgen" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion jni-android-sys/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Not recently tested... might work!

```toml
[dependencies]
jni-android-sys = { version = "0.0.6", features = ["api-level-28", "android::view::KeyEvent"] }
jni-android-sys = { version = "0.0.7", features = ["api-level-28", "android::view::KeyEvent"] }
```

### MainActivity.java
Expand Down
2 changes: 1 addition & 1 deletion jni-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jni-bindgen"
version = "0.0.6"
version = "0.0.7"
authors = ["MaulingMonkey <git@maulingmonkey.com>"]
edition = "2018"
description = "Code generator for binding to JVM APIs from Rust"
Expand Down
2 changes: 1 addition & 1 deletion jni-glue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jni-glue"
version = "0.0.6"
version = "0.0.7"
authors = ["MaulingMonkey <git@maulingmonkey.com>"]
edition = "2018"
description = "Manually written glue code to accompany the jni-bindgen code generator for binding to JVM APIs from Rust"
Expand Down

0 comments on commit ceaf5ec

Please sign in to comment.