Skip to content

Commit 65225cd

Browse files
committed
crates.io fixup, 0.6.1
1 parent 12cf2a6 commit 65225cd

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.1]
11+
12+
### Fixed
13+
- Excluded LVGL demos due to crates.io binary size limits
14+
1015
## [0.6.0]
1116

1217
### Added
@@ -86,7 +91,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8691

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

89-
[Unreleased]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.6.0..HEAD
94+
[Unreleased]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.6.1..HEAD
95+
[0.6.1]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.6.0..0.6.1
9096
[0.6.0]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.5.2..0.6.0
9197
[0.5.2]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.4.0..0.5.2
9298
[0.4.0]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.3.1..0.4.0

lvgl-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lvgl-codegen"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "Code generation based on LVGL source code"
55
authors = ["Rafael Caricio <[email protected]>"]
66
readme = "README.md"

lvgl-sys/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lvgl-sys"
33
description = "Raw bindings to the LVGL C library."
4-
version = "0.6.0"
4+
version = "0.6.1"
55
authors = ["Rafael Caricio <[email protected]>"]
66
edition = "2021"
77
license = "MIT"
@@ -12,6 +12,13 @@ categories = ["external-ffi-bindings", "embedded", "gui", "no-std"]
1212
keywords = ["littlevgl", "lvgl"]
1313
build = "build.rs"
1414
links = "lvgl"
15+
exclude = [
16+
"vendor/lvgl/demos",
17+
"vendor/lvgl/tests",
18+
"vendor/lvgl/examples",
19+
"vendor/lvgl/docs",
20+
"vendor/lvgl/scripts"
21+
]
1522

1623
[lib]
1724
name = "lvgl_sys"

lvgl/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lvgl"
33
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)."
4-
version = "0.6.0"
4+
version = "0.6.1"
55
authors = ["Rafael Caricio <[email protected]>"]
66
edition = "2021"
77
repository = "https://github.com/rafaelcaricio/lvgl-rs"
@@ -12,7 +12,7 @@ keywords = ["littlevgl", "lvgl", "graphical_interfaces"]
1212
build = "build.rs"
1313

1414
[dependencies]
15-
lvgl-sys = { version = "0.6.0", path = "../lvgl-sys" }
15+
lvgl-sys = { version = "0.6.1", path = "../lvgl-sys" }
1616
cty = "0.2.2"
1717
embedded-graphics = { version = "0.7.1", optional = true }
1818
cstr_core = { version = "0.2.6", default-features = false, features = ["alloc"] }
@@ -74,8 +74,8 @@ unsafe_no_autoinit = []
7474
[build-dependencies]
7575
quote = "1.0.23"
7676
proc-macro2 = "1.0.51"
77-
lvgl-codegen = { version = "0.6.0", path = "../lvgl-codegen" }
78-
lvgl-sys = { version = "0.6.0", path = "../lvgl-sys" }
77+
lvgl-codegen = { version = "0.6.1", path = "../lvgl-codegen" }
78+
lvgl-sys = { version = "0.6.1", path = "../lvgl-sys" }
7979

8080
[dev-dependencies]
8181
embedded-graphics-simulator = "0.4.0"

0 commit comments

Comments
 (0)