Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.3.2 #15

Merged
merged 2 commits into from
Aug 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
5 changes: 5 additions & 0 deletions src/devices/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down
Loading