Skip to content

Commit

Permalink
ohos-sys: Bump minimum version of dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
  • Loading branch information
jschwe committed Jan 9, 2025
1 parent da20655 commit 39980ec
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.6.0
# v0.6.0 (2025-01-09)

## Breaking

Expand All @@ -7,9 +7,10 @@
- native_window: Duplicate bindings for `native_buffer` types were removed. Use the bindings from `native_buffer` instead.
- native_buffer: `OH_NativeBuffer_MetadataType` is now a wrapper around `c_int` instead of `c_uint`.

## Changed
## Add

- Made vsync bindings also available as dedicated ohos-vsync-sys crate. No user facing changes.
- Updated all bindings for API-13.

# v0.5.0 (2025-01-04)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ members = ["components/*", "components/multimedia/image_framework"]
exclude = ["components/multimedia", "scripts"]

[workspace.dependencies]
ohos-sys-opaque-types = { version = "0.1", path = "components/opaque-types" }
ohos-sys-opaque-types = { version = "0.1.2", path = "components/opaque-types" }


[dependencies]
arkui-sys = { version = "0.2", optional = true, path = "components/arkui" }
arkui-sys = { version = "0.2.2", optional = true, path = "components/arkui" }
document-features = { version = "0.2", optional = true }
ohos-drawing-sys = { path = "components/drawing", version = "0.2.0", optional = true}
ohos-deviceinfo-sys = { version = "0.1.1", optional = true, path = "components/deviceinfo"}
hitrace-sys = { version = "0.1.3", optional = true, path = "components/hitrace"}
ohos-ime-sys = { version = "0.1.2", optional = true, path = "components/inputmethod"}
hilog-sys = { version = "0.1.3", optional = true, path = "components/hilog"}
ohos-drawing-sys = { path = "components/drawing", version = "0.2.1", optional = true}
ohos-deviceinfo-sys = { version = "0.1.2", optional = true, path = "components/deviceinfo"}
hitrace-sys = { version = "0.1.4", optional = true, path = "components/hitrace"}
ohos-ime-sys = { version = "0.1.3", optional = true, path = "components/inputmethod"}
hilog-sys = { version = "0.1.4", optional = true, path = "components/hilog"}
xcomponent-sys = {version = "0.3.0", optional = true, path = "components/xcomponent"}
ohos-image-kit-sys = {version = "0.2", optional = true, path = "components/multimedia/image_framework"}
ohos-sys-opaque-types = { workspace = true}
ohos-vsync-sys = { version = "0.1", optional = true, path = "components/vsync"}
ohos-vsync-sys = { version = "0.1.1", optional = true, path = "components/vsync"}


[features]
Expand Down
2 changes: 1 addition & 1 deletion components/opaque-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ohos-sys-opaque-types"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
keywords = ["OpenHarmony", "HarmonyOS"]
description = "Internal helper cratefor opaque type bindings that are used in multiple ohos-sys crates"
Expand Down
3 changes: 2 additions & 1 deletion components/xcomponent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 0.3.0 (unreleased)
# 0.3.0 (2025-01-09)

- The constant `OH_NATIVE_XCOMPONENT_OBJ` is now a `CStr` instead of raw byte string
- Updated bindings for API-13

# 0.2.0 (2025-01-04)

Expand Down

0 comments on commit 39980ec

Please sign in to comment.