From 65225cdc0d9170f53dfe4df3ec6834c43a135845 Mon Sep 17 00:00:00 2001 From: Nia Espera Date: Sun, 2 Apr 2023 17:16:35 +0200 Subject: [PATCH] crates.io fixup, 0.6.1 --- CHANGELOG.md | 8 +++++++- lvgl-codegen/Cargo.toml | 2 +- lvgl-sys/Cargo.toml | 9 ++++++++- lvgl/Cargo.toml | 8 ++++---- 4 files changed, 20 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d665f4d..2d44d880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1] + +### Fixed +- Excluded LVGL demos due to crates.io binary size limits + ## [0.6.0] ### Added @@ -86,7 +91,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.6.0..HEAD +[Unreleased]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.6.1..HEAD +[0.6.1]: https://github.com/rafaelcaricio/lvgl-rs/compare/0.6.0..0.6.1 [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 diff --git a/lvgl-codegen/Cargo.toml b/lvgl-codegen/Cargo.toml index 7116ee2b..a4af5c61 100644 --- a/lvgl-codegen/Cargo.toml +++ b/lvgl-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lvgl-codegen" -version = "0.6.0" +version = "0.6.1" description = "Code generation based on LVGL source code" authors = ["Rafael Caricio "] readme = "README.md" diff --git a/lvgl-sys/Cargo.toml b/lvgl-sys/Cargo.toml index 8bb6c523..3472d004 100644 --- a/lvgl-sys/Cargo.toml +++ b/lvgl-sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lvgl-sys" description = "Raw bindings to the LVGL C library." -version = "0.6.0" +version = "0.6.1" authors = ["Rafael Caricio "] edition = "2021" license = "MIT" @@ -12,6 +12,13 @@ categories = ["external-ffi-bindings", "embedded", "gui", "no-std"] keywords = ["littlevgl", "lvgl"] build = "build.rs" links = "lvgl" +exclude = [ + "vendor/lvgl/demos", + "vendor/lvgl/tests", + "vendor/lvgl/examples", + "vendor/lvgl/docs", + "vendor/lvgl/scripts" +] [lib] name = "lvgl_sys" diff --git a/lvgl/Cargo.toml b/lvgl/Cargo.toml index a0525c00..c598841a 100644 --- a/lvgl/Cargo.toml +++ b/lvgl/Cargo.toml @@ -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.6.0" +version = "0.6.1" authors = ["Rafael Caricio "] edition = "2021" repository = "https://github.com/rafaelcaricio/lvgl-rs" @@ -12,7 +12,7 @@ keywords = ["littlevgl", "lvgl", "graphical_interfaces"] build = "build.rs" [dependencies] -lvgl-sys = { version = "0.6.0", path = "../lvgl-sys" } +lvgl-sys = { version = "0.6.1", 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"] } @@ -74,8 +74,8 @@ unsafe_no_autoinit = [] [build-dependencies] quote = "1.0.23" proc-macro2 = "1.0.51" -lvgl-codegen = { version = "0.6.0", path = "../lvgl-codegen" } -lvgl-sys = { version = "0.6.0", path = "../lvgl-sys" } +lvgl-codegen = { version = "0.6.1", path = "../lvgl-codegen" } +lvgl-sys = { version = "0.6.1", path = "../lvgl-sys" } [dev-dependencies] embedded-graphics-simulator = "0.4.0"