Skip to content

Commit

Permalink
chore: bump version to 0.1.2
Browse files Browse the repository at this point in the history
Signed-off-by: Haobo Gu <[email protected]>
  • Loading branch information
HaoboGu committed Jan 22, 2024
1 parent 7f0fc7b commit 47579bd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 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 @@

[package]
name = "rmk-rp2040"
version = "0.1.1"
version = "0.1.2"
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.1.1", path = "../../rmk", features = [
rmk = { version = "0.1.2", path = "../../rmk", features = [
"eeprom",
"col2row",
] }
Expand Down
4 changes: 2 additions & 2 deletions boards/stm32f4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "rmk-stm32f4"
version = "0.1.1"
version = "0.1.2"
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.1.1", path = "../../rmk", features = [
rmk = { version = "0.1.2", 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 @@

[package]
name = "rmk-stm32h7"
version = "0.1.1"
version = "0.1.2"
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.1.1", path = "../../rmk", features = [
rmk = { version = "0.1.2", 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 @@ -103,7 +103,7 @@ async fn main(_spawner: Spawner) {
let f = Flash::new_blocking(p.FLASH);
let keymap = MY_KEYMAP.init(RefCell::new(KeyMap::new(
crate::keymap::KEYMAP,
None,
Some(f),
eeprom_storage_config,
None,
)));
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.1.1"
version = "0.1.2"
authors = ["Haobo Gu <[email protected]>"]
description = "Keyboard firmware written in Rust"
homepage = "https://github.com/haobogu/rmk"
Expand Down

0 comments on commit 47579bd

Please sign in to comment.