Skip to content

Commit f8a2cbb

Browse files
Merge pull request #32 from rust-embedded-community/release/061
Release v0.6.1
2 parents 5b92046 + 888c949 commit f8a2cbb

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [Unreleased](https://github.com/rust-embedded-community/menu/compare/v0.6.0...master)
8+
## [Unreleased](https://github.com/rust-embedded-community/menu/compare/v0.6.1...master)
9+
10+
## [v0.6.1] - 2024-11-29
911

1012
### Changed
1113

@@ -47,11 +49,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4749
* Made `struct Menu` implement `Clone`
4850
* Add the possibility to disable local echo (via `echo` feature, enabled by default)
4951

50-
## [v0.3.1] - 2019-08-11
52+
## [v0.3.2] - 2019-08-22
5153

5254
### Changed
5355

54-
* Updated crate metadata
56+
* Tidied up help text
57+
58+
## [v0.3.1] - 2019-08-11
59+
5560

5661
## [v0.3.0] - 2019-08-11
5762

@@ -77,6 +82,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7782

7883
* First release
7984

85+
[v0.6.1]: https://github.com/rust-embedded-community/menu/releases/tag/v0.6.1
8086
[v0.6.0]: https://github.com/rust-embedded-community/menu/releases/tag/v0.6.0
8187
[v0.5.1]: https://github.com/rust-embedded-community/menu/releases/tag/v0.5.1
8288
[v0.5.0]: https://github.com/rust-embedded-community/menu/releases/tag/v0.5.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "menu"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Jonathan 'theJPster' Pallant <github@thejpster.org.uk>"]
55
description = "A simple #[no_std] command line interface."
66
license = "MIT OR Apache-2.0"

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ struct PromptIter<'a, I, T> {
275275
state: PromptIterState,
276276
}
277277

278-
impl<'a, I, T> Clone for PromptIter<'a, I, T> {
278+
impl<I, T> Clone for PromptIter<'_, I, T> {
279279
fn clone(&self) -> Self {
280280
Self {
281281
menu_mgr: self.menu_mgr,
@@ -380,7 +380,7 @@ where
380380
}
381381
}
382382

383-
impl<'a, I, T, B> Runner<'a, I, T, B>
383+
impl<I, T, B> Runner<'_, I, T, B>
384384
where
385385
I: embedded_io::Write,
386386
B: AsMut<[u8]> + ?Sized,
@@ -456,7 +456,7 @@ where
456456
}
457457
}
458458

459-
impl<'a, I, T> InnerRunner<'a, I, T>
459+
impl<I, T> InnerRunner<'_, I, T>
460460
where
461461
I: embedded_io::Write,
462462
{

0 commit comments

Comments
 (0)