Skip to content

Commit

Permalink
Bump versions (#72)
Browse files Browse the repository at this point in the history
* Bump versions

* Correct cargo-apk CHANGELOG version
  • Loading branch information
francesca64 authored Sep 15, 2020
1 parent 7e3a85c commit b7dee6b
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 17 deletions.
2 changes: 2 additions & 0 deletions cargo-apk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.5.2 (2020-09-15)

- Updated to use [ndk-build 0.1.2](../ndk-build/CHANGELOG.md#012-2020-09-15)

# 0.5.1 (2020-07-15)
Expand Down
6 changes: 3 additions & 3 deletions cargo-apk/Cargo.toml
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"
Expand All @@ -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"
2 changes: 2 additions & 0 deletions ndk-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.1.2 (2020-09-15)

- `android:label` is configurable.
- Library search paths are much more intelligent.
- `android:screenOrientation` is configurable.
Expand Down
4 changes: 2 additions & 2 deletions ndk-build/Cargo.toml
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"
Expand Down
2 changes: 2 additions & 0 deletions ndk-glue/CHANGELOG.md
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)
Expand Down
10 changes: 5 additions & 5 deletions ndk-glue/Cargo.toml
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"
Expand All @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions ndk-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.2.0 (2020-09-15)

- Added crate name override option
- **Breaking:** Changed macro attribute syntax

Expand Down
4 changes: 2 additions & 2 deletions ndk-macro/Cargo.toml
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"
Expand Down
3 changes: 3 additions & 0 deletions ndk-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Unreleased

# 0.2.0 (2020-09-15)

- **Breaking:** `onSaveInstanceState` signature corrected to take `outSize` as a `*mut size_t` instead of `*mut usize`.
- Add `media` bindings
- Add `bitmap` and `hardware_buffer` bindings
- Add `aaudio` bindings
Expand Down
4 changes: 2 additions & 2 deletions ndk-sys/Cargo.toml
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"
Expand Down
3 changes: 3 additions & 0 deletions ndk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Unreleased

# 0.2.0 (2020-09-15)

- **Breaking:** Updated to use [ndk-sys 0.2.0](../ndk-sys/CHANGELOG.md#020-2020-09-15)
- Added `media` bindings
- Added `bitmap` and `hardware_buffer` bindings
- Added `aaudio` bindings
Expand Down
6 changes: 3 additions & 3 deletions ndk/Cargo.toml
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"
Expand Down Expand Up @@ -47,4 +47,4 @@ optional = true
[dependencies.ffi]
package = "ndk-sys"
path = "../ndk-sys"
version = "0.1.0"
version = "0.2.0"

0 comments on commit b7dee6b

Please sign in to comment.