Skip to content

Commit 6bd9b92

Browse files
authored
Merge pull request #139 from rust-embedded-community/main
Backport 0.8.0
2 parents 4e4e084 + 8a2bf64 commit 6bd9b92

File tree

2 files changed

+33
-5
lines changed

2 files changed

+33
-5
lines changed

CHANGELOG.md

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,33 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
88

99
### Changed
1010

11-
- Updated to `heapless` ^0.8
11+
- None
12+
13+
### Added
14+
15+
- None
16+
17+
### Removed
18+
19+
- None
20+
21+
## [Version 0.8.0] - 2024-07-12
22+
23+
### Changed
24+
25+
- Fixed a bug when seeking backwards through files.
26+
- Updated to `heapless-0.8` and `embedded-hal-bus-0.2`.
27+
- No longer panics if the close fails when a `Volume` is dropped - the failure is instead ignored.
28+
29+
### Added
30+
31+
- `File` now has a `flush()` method.
32+
- `File` now has a `close()` method.
33+
34+
### Removed
35+
36+
- __Breaking Change__: Removed `CS` type-param on `SdCard` - now we use the `SpiDevice` chip-select (closing [#126])
37+
- __Breaking Change__: Removed the 74 clock cycle 'init' sequence - now applications must do this
1238

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

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

3258
### Removed
3359

34-
* None
60+
- None
3561

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

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

129156
- Reduce delay waiting for response. Big speed improvements.
130157

131-
## [Version 0.1.0] - 2018-12-23
158+
## [Version 0.1.1] - 2018-12-23
132159

133160
### Changed
134161

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

140167
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
141168
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
142-
[Unreleased]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.7.0...develop
169+
[Unreleased]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.8.0...develop
170+
[Version 0.8.0]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.8.0...v0.7.0
143171
[Version 0.7.0]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.7.0...v0.6.0
144172
[Version 0.6.0]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.6.0...v0.5.0
145173
[Version 0.5.0]: https://github.com/rust-embedded-community/embedded-sdmmc-rs/compare/v0.5.0...v0.4.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
88
name = "embedded-sdmmc"
99
readme = "README.md"
1010
repository = "https://github.com/rust-embedded-community/embedded-sdmmc-rs"
11-
version = "0.7.0"
11+
version = "0.8.0"
1212

1313
[dependencies]
1414
byteorder = {version = "1", default-features = false}

0 commit comments

Comments
 (0)