Skip to content

Commit

Permalink
chore(proj): bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Haobo Gu <[email protected]>
  • Loading branch information
HaoboGu committed Oct 26, 2023
1 parent 1a2cc1b commit 0ece5a9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions boards/rp2040/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cargo-features = ["per-package-target"]

[package]
name = "rmk-rp2040"
version = "0.0.2"
version = "0.0.3"
authors = ["Haobo Gu <[email protected]>"]
description = "Keyboard firmware written in Rust"
homepage = "https://github.com/haobogu/rmk"
Expand All @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
forced-target = "thumbv6m-none-eabi"

[dependencies]
rmk = { version = "0.0.3", path = "../../rmk", features = [
rmk = { version = "0.0.4", path = "../../rmk", features = [
"eeprom",
"col2row",
] }
Expand Down
4 changes: 2 additions & 2 deletions boards/stm32h7/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cargo-features = ["per-package-target"]

[package]
name = "rmk-stm32h7"
version = "0.0.2"
version = "0.0.3"
authors = ["Haobo Gu <[email protected]>"]
description = "Keyboard firmware written in Rust"
homepage = "https://github.com/haobogu/rmk"
Expand All @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
forced-target = "thumbv7em-none-eabihf"

[dependencies]
rmk = { version = "0.0.3", path = "../../rmk", features = [
rmk = { version = "0.0.4", path = "../../rmk", features = [
"eeprom",
"col2row",
] }
Expand Down
2 changes: 1 addition & 1 deletion boards/stm32h7/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ mod app {

#[init]
fn init(cx: init::Context) -> (Shared, Local) {
rtt_logger::init(log::LevelFilter::Debug);
rtt_logger::init(log::LevelFilter::Info);
let cp = cx.core;
let dp = cx.device;

Expand Down
2 changes: 1 addition & 1 deletion rmk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rmk"
version = "0.0.3"
version = "0.0.4"
authors = ["Haobo Gu <[email protected]>"]
description = "Keyboard firmware written in Rust"
homepage = "https://github.com/haobogu/rmk"
Expand Down

0 comments on commit 0ece5a9

Please sign in to comment.