-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump versions * Correct cargo-apk CHANGELOG version
- Loading branch information
1 parent
7e3a85c
commit b7dee6b
Showing
12 changed files
with
31 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "cargo-apk" | ||
version = "0.5.1" | ||
authors = ["David Craven <[email protected]>"] | ||
version = "0.5.2" | ||
authors = ["The Rust Windowing contributors"] | ||
edition = "2018" | ||
description = "Helps cargo build apks" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -16,7 +16,7 @@ cargo-subcommand = "0.4.4" | |
dunce = "1.0" | ||
env_logger = "0.7.1" | ||
log = "0.4.8" | ||
ndk-build = { path = "../ndk-build", version = "0.1" } | ||
ndk-build = { path = "../ndk-build", version = "0.1.2" } | ||
serde = "1.0.104" | ||
thiserror = "1.0" | ||
toml = "0.5.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ndk-build" | ||
version = "0.1.1" | ||
authors = ["David Craven <[email protected]>"] | ||
version = "0.1.2" | ||
authors = ["The Rust Windowing contributors"] | ||
edition = "2018" | ||
description = "Utilities for building android binaries" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Unreleased | ||
|
||
# 0.2.0 (2020-09-15) | ||
|
||
- **Breaking:** Changed `main` macro attribute syntax | ||
|
||
# 0.1.0 (2020-04-22) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ndk-glue" | ||
version = "0.1.0" | ||
authors = ["David Craven <[email protected]>"] | ||
version = "0.2.0" | ||
authors = ["The Rust Windowing contributors"] | ||
edition = "2018" | ||
description = "Startup code for android binaries" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -12,9 +12,9 @@ homepage = "https://github.com/rust-windowing/android-ndk-rs" | |
repository = "https://github.com/rust-windowing/android-ndk-rs" | ||
|
||
[dependencies] | ||
ndk = { path = "../ndk", version = "0.1.0" } | ||
ndk-sys = { path = "../ndk-sys", version = "0.1.0" } | ||
ndk-macro = { path = "../ndk-macro", version = "0.1.0" } | ||
ndk = { path = "../ndk", version = "0.2.0" } | ||
ndk-sys = { path = "../ndk-sys", version = "0.2.0" } | ||
ndk-macro = { path = "../ndk-macro", version = "0.2.0" } | ||
lazy_static = "1.4.0" | ||
libc = "0.2.66" | ||
log = "0.4.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ndk-macro" | ||
version = "0.1.0" | ||
authors = ["K. <[email protected]>"] | ||
version = "0.2.0" | ||
authors = ["The Rust Windowing contributors"] | ||
edition = "2018" | ||
description = "Helper macros for android ndk" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ndk-sys" | ||
version = "0.1.0" | ||
authors = ["Mark Barbone <[email protected]>"] | ||
version = "0.2.0" | ||
authors = ["The Rust Windowing contributors"] | ||
edition = "2018" | ||
description = "FFI bindings for the Android NDK" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ndk" | ||
version = "0.1.0" | ||
authors = ["Mark Barbone <[email protected]>"] | ||
version = "0.2.0" | ||
authors = ["The Rust Windowing contributors"] | ||
edition = "2018" | ||
description = "Safe Rust bindings to the Android NDK" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -47,4 +47,4 @@ optional = true | |
[dependencies.ffi] | ||
package = "ndk-sys" | ||
path = "../ndk-sys" | ||
version = "0.1.0" | ||
version = "0.2.0" |