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

Backport 0.8.0 #139

Merged
merged 3 commits into from
Jul 13, 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
36 changes: 32 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,33 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic

### Changed

- Updated to `heapless` ^0.8
- None

### Added

- None

### Removed

- None

## [Version 0.8.0] - 2024-07-12

### Changed

- Fixed a bug when seeking backwards through files.
- Updated to `heapless-0.8` and `embedded-hal-bus-0.2`.
- No longer panics if the close fails when a `Volume` is dropped - the failure is instead ignored.

### Added

- `File` now has a `flush()` method.
- `File` now has a `close()` method.

### Removed

- __Breaking Change__: Removed `CS` type-param on `SdCard` - now we use the `SpiDevice` chip-select (closing [#126])
- __Breaking Change__: Removed the 74 clock cycle 'init' sequence - now applications must do this

## [Version 0.7.0] - 2024-02-04

Expand All @@ -31,8 +57,9 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic

### Removed

* None
- None

[#126]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/issues/126
[#74]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/issues/74
[embedded-hal]: https://crates.io/crates/embedded-hal

Expand Down Expand Up @@ -128,7 +155,7 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic

- Reduce delay waiting for response. Big speed improvements.

## [Version 0.1.0] - 2018-12-23
## [Version 0.1.1] - 2018-12-23

### Changed

Expand All @@ -139,7 +166,8 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
[Unreleased]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.7.0...develop
[Unreleased]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.8.0...develop
[Version 0.8.0]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.8.0...v0.7.0
[Version 0.7.0]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.7.0...v0.6.0
[Version 0.6.0]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.6.0...v0.5.0
[Version 0.5.0]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.5.0...v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "embedded-sdmmc"
readme = "README.md"
repository = "https://github.com/rust-embedded-community/embedded-sdmmc-rs"
version = "0.7.0"
version = "0.8.0"

[dependencies]
byteorder = {version = "1", default-features = false}
Expand Down