Skip to content

Commit

Permalink
bumped version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wainwrightmark committed Mar 6, 2023
1 parent efc0af3 commit 6c9e94c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Possible header types:
- `Bug Fixes` for any bug fixes.
- `Breaking Changes` for any backwards-incompatible changes.#

## v0.4.0 (2023-03-06)
- Features - Added support for Screen Reader plugin

## v0.3.0 (2023-03-05)
- Breaking Changes - PluginListenerHandle now works differently - must be stored to be dropped later or leaked.
- Features - Added support for App and Network plugins and more complete support of LocalNotifications
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "capacitor_bindings"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
authors = ["Mark Wainwright <wainwrightml@gmail.com>"]
description = "Capactior bindings to help you build android and ios apps with rust."
Expand All @@ -16,7 +16,7 @@ license = "MIT"
[dependencies]
js-sys = "0.3"
serde = { version = "1", features = ["derive"] }
serde-wasm-bindgen = "0.4"
serde-wasm-bindgen = "0.5"
serde_with = "2.2.0"
wasm-bindgen = { version = "0.2" }
wasm-bindgen-futures = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
[<img alt="github" src="https://img.shields.io/badge/github-wainwrightmark/capacitor_bindings-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="22">](https://github.com/wainwrightmark/capacitor_bindings)
[<img alt="crates.io" src="https://img.shields.io/crates/v/capacitor_bindings.svg?style=for-the-badge&color=fc8d62&logo=rust" height="22">](https://crates.io/crates/capacitor_bindings)
[<img alt="docs.rs" src="https://img.shields.io/docsrs/capacitor_bindings/latest?style=for-the-badge&labelColor=555555&logoColor=white&logo=data:image/svg+xml;base64,PHN2ZyByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxwYXRoIGZpbGw9IiNmNWY1ZjUiIGQ9Ik00ODguNiAyNTAuMkwzOTIgMjE0VjEwNS41YzAtMTUtOS4zLTI4LjQtMjMuNC0zMy43bC0xMDAtMzcuNWMtOC4xLTMuMS0xNy4xLTMuMS0yNS4zIDBsLTEwMCAzNy41Yy0xNC4xIDUuMy0yMy40IDE4LjctMjMuNCAzMy43VjIxNGwtOTYuNiAzNi4yQzkuMyAyNTUuNSAwIDI2OC45IDAgMjgzLjlWMzk0YzAgMTMuNiA3LjcgMjYuMSAxOS45IDMyLjJsMTAwIDUwYzEwLjEgNS4xIDIyLjEgNS4xIDMyLjIgMGwxMDMuOS01MiAxMDMuOSA1MmMxMC4xIDUuMSAyMi4xIDUuMSAzMi4yIDBsMTAwLTUwYzEyLjItNi4xIDE5LjktMTguNiAxOS45LTMyLjJWMjgzLjljMC0xNS05LjMtMjguNC0yMy40LTMzLjd6TTM1OCAyMTQuOGwtODUgMzEuOXYtNjguMmw4NS0zN3Y3My4zek0xNTQgMTA0LjFsMTAyLTM4LjIgMTAyIDM4LjJ2LjZsLTEwMiA0MS40LTEwMi00MS40di0uNnptODQgMjkxLjFsLTg1IDQyLjV2LTc5LjFsODUtMzguOHY3NS40em0wLTExMmwtMTAyIDQxLjQtMTAyLTQxLjR2LS42bDEwMi0zOC4yIDEwMiAzOC4ydi42em0yNDAgMTEybC04NSA0Mi41di03OS4xbDg1LTM4Ljh2NzUuNHptMC0xMTJsLTEwMiA0MS40LTEwMi00MS40di0uNmwxMDItMzguMiAxMDIgMzguMnYuNnoiPjwvcGF0aD48L3N2Zz4K" height="22">](https://docs.rs/capacitor_bindings)
[<img alt="build status" src="https://img.shields.io/github/workflow/status/wainwrightmark/capacitor_bindings/build/main?style=for-the-badge" height="22">](https://github.com/wainwrightmark/capacitor_bindings/actions?query=branch%3Amain)

Capacitor bindings to help you build android and ios apps using rust.

Expand All @@ -29,6 +28,7 @@ Currently supported
- Network
- Share
- Status Bar
- Screen Reader
- Toast

Some of the functions are only available on certain platforms. Use the features `web`, `android`, or `ios` to get access to them if you are building for that platform.
Expand Down
4 changes: 2 additions & 2 deletions example_application/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Example of using capacitor with trunk and yew"
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ categories = ["gui", "wasm", "web-programming"]
js-sys = "0.3.61"
log = "0.4.17"
serde = { version = "1.0.152", features = ["derive"] }
serde-wasm-bindgen = "0.4.5"
serde-wasm-bindgen = "0.5.0"
wasm-bindgen = { version = "0.2" }
wasm-bindgen-futures = "0.4.34"
wasm-logger = "0.2.0"
Expand Down

0 comments on commit 6c9e94c

Please sign in to comment.