Skip to content

Commit

Permalink
Merge pull request #154 from HaoboGu/fix/windows_link_err
Browse files Browse the repository at this point in the history
Fix link error on Windows
  • Loading branch information
HaoboGu authored Nov 27, 2024
2 parents 9d23289 + ffdce77 commit c86631d
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 16 deletions.
6 changes: 3 additions & 3 deletions examples/use_rust/nrf52840_ble/Cargo.lock

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

6 changes: 3 additions & 3 deletions examples/use_rust/nrf52840_ble_split/Cargo.lock

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

6 changes: 3 additions & 3 deletions examples/use_rust/stm32h7/Cargo.lock

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

4 changes: 4 additions & 0 deletions rmk-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.3] - 2024-11-27

- Fix link error on Windows

## [0.2.2] - 2024-11-25

- Add behavior config
Expand Down
4 changes: 2 additions & 2 deletions rmk-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rmk-config"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["Haobo Gu <[email protected]>"]
description = "Config crate of RMK"
Expand All @@ -17,7 +17,7 @@ embassy-nrf = { version = "0.2.0", features = [
"unstable-pac",
"time",
], optional = true }
embassy-time = { version = "0.3", features = ["defmt"] }
embassy-time = { version = "0.3" }

[features]
default = []
Expand Down
3 changes: 3 additions & 0 deletions rmk-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
//! [keyboard_config] is what RMK's code receives. You can safely ignore it unless you want to dive into the RMK source code.
#![cfg_attr(not(feature = "toml"), no_std)]


#[cfg(not(feature = "toml"))]
pub mod keyboard_config;
#[cfg(not(feature = "toml"))]
pub use keyboard_config::*;

#[cfg(feature = "toml")]
Expand Down
4 changes: 4 additions & 0 deletions rmk-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.3] - 2024-11-27

- Fix link error on Windows

## [0.3.2] - 2024-11-25

### Added
Expand Down
4 changes: 2 additions & 2 deletions rmk-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rmk-macro"
version = "0.3.2"
version = "0.3.3"
edition = "2021"
authors = ["Haobo Gu <[email protected]>"]
description = "Proc-macro crate of RMK"
Expand All @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
resolver = "2"

[dependencies]
rmk-config = { version = "0.2.2", path = "../rmk-config", features = ["toml"] }
rmk-config = { version = "0.2.3", path = "../rmk-config", features = ["toml"] }
toml = "0.8"
serde = "1.0"
serde_derive = "1.0"
Expand Down
6 changes: 6 additions & 0 deletions rmk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.4] - 2024-11-27

### Fixed

- Fix link error on Windows

## [0.4.3] - 2024-11-25

### Added
Expand Down
6 changes: 3 additions & 3 deletions rmk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rmk"
version = "0.4.3"
version = "0.4.4"
authors = ["Haobo Gu <[email protected]>"]
description = "Keyboard firmware written in Rust"
homepage = "https://github.com/haobogu/rmk"
Expand All @@ -11,8 +11,8 @@ license = "MIT OR Apache-2.0"
resolver = "2"

[dependencies]
rmk-config = { version = "0.2.2", path = "../rmk-config" }
rmk-macro = { version = "0.3.2", path = "../rmk-macro" }
rmk-config = { version = "0.2.3", path = "../rmk-config" }
rmk-macro = { version = "0.3.3", path = "../rmk-macro" }
embedded-hal = { version = "1.0.0", features = ["defmt-03"] }
embedded-hal-async = { version = "1.0.0", features = [
"defmt-03",
Expand Down

0 comments on commit c86631d

Please sign in to comment.