diff --git a/CHANGELOG.md b/CHANGELOG.md index 4569028..75e85d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [v0.3.2] 2024-08-04 + +* Fix: Add import for IS42S32400F + ## [v0.3.1] 2024-08-04 * Add IS42S32400F to devices [#14] @@ -39,7 +43,8 @@ * Don't require type to be `Sync` in order to implement FmcPeripheral * Begin Changelog -[Unreleased]: https://github.com/stm32-rs/stm32-fmc/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/stm32-rs/stm32-fmc/compare/v0.3.2...HEAD +[v0.3.2]: https://github.com/stm32-rs/stm32-fmc/compare/v0.3.1...v0.3.2 [v0.3.1]: https://github.com/stm32-rs/stm32-fmc/compare/v0.3.0...v0.3.1 [v0.3.0]: https://github.com/stm32-rs/stm32-fmc/compare/v0.2.4...v0.3.0 [v0.2.4]: https://github.com/stm32-rs/stm32-fmc/compare/v0.2.3...v0.2.4 diff --git a/Cargo.toml b/Cargo.toml index 8733b32..07420be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stm32-fmc" -version = "0.3.1" +version = "0.3.2" authors = ["Richard Meadows <richard@richard.fish>"] edition = "2018" categories = ["embedded", "hardware-support", "no-std"] diff --git a/src/devices/mod.rs b/src/devices/mod.rs index 577aa16..93303a9 100644 --- a/src/devices/mod.rs +++ b/src/devices/mod.rs @@ -15,6 +15,11 @@ mod is42s16400j; #[cfg(feature = "sdram")] pub use is42s16400j::*; +#[cfg(feature = "sdram")] +mod is42s32400f; +#[cfg(feature = "sdram")] +pub use is42s32400f::*; + #[cfg(feature = "sdram")] mod is42s32800g; #[cfg(feature = "sdram")]