From 8b011f72ba0061e50540bb0f13e8f2cb2f568d9c Mon Sep 17 00:00:00 2001 From: Haobo Gu Date: Sun, 21 Jan 2024 00:34:13 +0800 Subject: [PATCH] chore: bump version --- Cargo.lock | 6 +++--- boards/rp2040/Cargo.toml | 4 ++-- boards/stm32f4/Cargo.toml | 4 ++-- boards/stm32h7/Cargo.toml | 4 ++-- rmk/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3def7f6..9e2349fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1270,7 +1270,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "rmk" -version = "0.1.0" +version = "0.1.1" dependencies = [ "byteorder", "embassy-sync", @@ -1288,7 +1288,7 @@ dependencies = [ [[package]] name = "rmk-rp2040" -version = "0.1.0" +version = "0.1.1" dependencies = [ "cortex-m", "cortex-m-rt", @@ -1310,7 +1310,7 @@ dependencies = [ [[package]] name = "rmk-stm32h7" -version = "0.1.0" +version = "0.1.1" dependencies = [ "cortex-m", "cortex-m-rt", diff --git a/boards/rp2040/Cargo.toml b/boards/rp2040/Cargo.toml index 532c7403..5752ebf5 100644 --- a/boards/rp2040/Cargo.toml +++ b/boards/rp2040/Cargo.toml @@ -2,7 +2,7 @@ cargo-features = ["per-package-target"] [package] name = "rmk-rp2040" -version = "0.1.0" +version = "0.1.1" authors = ["Haobo Gu "] description = "Keyboard firmware written in Rust" homepage = "https://github.com/haobogu/rmk" @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0" forced-target = "thumbv6m-none-eabi" [dependencies] -rmk = { version = "0.1.0", path = "../../rmk", features = [ +rmk = { version = "0.1.1", path = "../../rmk", features = [ "eeprom", "col2row", ] } diff --git a/boards/stm32f4/Cargo.toml b/boards/stm32f4/Cargo.toml index df2966f2..420b8231 100644 --- a/boards/stm32f4/Cargo.toml +++ b/boards/stm32f4/Cargo.toml @@ -2,7 +2,7 @@ cargo-features = ["per-package-target"] [package] name = "rmk-stm32f4" -version = "0.1.0" +version = "0.1.1" authors = ["Haobo Gu "] description = "Keyboard firmware written in Rust" homepage = "https://github.com/haobogu/rmk" @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0" forced-target = "thumbv7em-none-eabihf" [dependencies] -rmk = { version = "0.1.0", path = "../../rmk", features = [ +rmk = { version = "0.1.1", path = "../../rmk", features = [ "eeprom", "col2row", ] } diff --git a/boards/stm32h7/Cargo.toml b/boards/stm32h7/Cargo.toml index c9508ad1..c2373c5a 100644 --- a/boards/stm32h7/Cargo.toml +++ b/boards/stm32h7/Cargo.toml @@ -2,7 +2,7 @@ cargo-features = ["per-package-target"] [package] name = "rmk-stm32h7" -version = "0.1.0" +version = "0.1.1" authors = ["Haobo Gu "] description = "Keyboard firmware written in Rust" homepage = "https://github.com/haobogu/rmk" @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0" forced-target = "thumbv7em-none-eabihf" [dependencies] -rmk = { version = "0.1.0", path = "../../rmk", features = [ +rmk = { version = "0.1.1", path = "../../rmk", features = [ "eeprom", "col2row", ] } diff --git a/rmk/Cargo.toml b/rmk/Cargo.toml index 628cb4f6..dbddf37f 100644 --- a/rmk/Cargo.toml +++ b/rmk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rmk" -version = "0.1.0" +version = "0.1.1" authors = ["Haobo Gu "] description = "Keyboard firmware written in Rust" homepage = "https://github.com/haobogu/rmk"