Skip to content

Commit

Permalink
version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nia-e committed Apr 2, 2023
1 parent 7e84210 commit 12cf2a6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0]

### Added

- Support pointer input devices #62
Expand Down Expand Up @@ -84,7 +86,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- No (direct) dependency on `clang-rs`

[Unreleased]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.5.2..HEAD
[Unreleased]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.6.0..HEAD
[0.6.0]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.5.2..0.6.0
[0.5.2]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.4.0..0.5.2
[0.4.0]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.3.1..0.4.0
[0.3.1]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.3.0..0.3.1
Expand Down
1 change: 1 addition & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ All examples can be executed using:
```shell
cargo run --example <name>
```
while in the `lvgl-rs` directory (i.e. one up from this).

The `DEP_LV_CONFIG_PATH` environment variable is necessary, as explained in the [README](../README.md).
2 changes: 1 addition & 1 deletion lvgl-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lvgl-codegen"
version = "0.5.2"
version = "0.6.0"
description = "Code generation based on LVGL source code"
authors = ["Rafael Caricio <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion lvgl-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lvgl-sys"
description = "Raw bindings to the LVGL C library."
version = "0.5.2"
version = "0.6.0"
authors = ["Rafael Caricio <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
8 changes: 4 additions & 4 deletions lvgl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lvgl"
description = "LVGL bindings for Rust. A powerful and easy-to-use embedded GUI with many widgets, advanced visual effects (opacity, antialiasing, animations) and low memory requirements (16K RAM, 64K Flash)."
version = "0.5.2"
version = "0.6.0"
authors = ["Rafael Caricio <[email protected]>"]
edition = "2021"
repository = "https://github.com/rafaelcaricio/lvgl-rs"
Expand All @@ -12,7 +12,7 @@ keywords = ["littlevgl", "lvgl", "graphical_interfaces"]
build = "build.rs"

[dependencies]
lvgl-sys = { version = "0.5.2", path = "../lvgl-sys" }
lvgl-sys = { version = "0.6.0", path = "../lvgl-sys" }
cty = "0.2.2"
embedded-graphics = { version = "0.7.1", optional = true }
cstr_core = { version = "0.2.6", default-features = false, features = ["alloc"] }
Expand Down Expand Up @@ -74,8 +74,8 @@ unsafe_no_autoinit = []
[build-dependencies]
quote = "1.0.23"
proc-macro2 = "1.0.51"
lvgl-codegen = { version = "0.5.2", path = "../lvgl-codegen" }
lvgl-sys = { version = "0.5.2", path = "../lvgl-sys" }
lvgl-codegen = { version = "0.6.0", path = "../lvgl-codegen" }
lvgl-sys = { version = "0.6.0", path = "../lvgl-sys" }

[dev-dependencies]
embedded-graphics-simulator = "0.4.0"
Expand Down

0 comments on commit 12cf2a6

Please sign in to comment.