Skip to content

Commit

Permalink
Merge pull request #32 from rust-embedded-community/release/061
Browse files Browse the repository at this point in the history
Release v0.6.1
  • Loading branch information
jonathanpallant authored Nov 29, 2024
2 parents 5b92046 + 888c949 commit f8a2cbb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased](https://github.com/rust-embedded-community/menu/compare/v0.6.0...master)
## [Unreleased](https://github.com/rust-embedded-community/menu/compare/v0.6.1...master)

## [v0.6.1] - 2024-11-29

### Changed

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

## [v0.3.1] - 2019-08-11
## [v0.3.2] - 2019-08-22

### Changed

* Updated crate metadata
* Tidied up help text

## [v0.3.1] - 2019-08-11


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

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

* First release

[v0.6.1]: https://github.com/rust-embedded-community/menu/releases/tag/v0.6.1
[v0.6.0]: https://github.com/rust-embedded-community/menu/releases/tag/v0.6.0
[v0.5.1]: https://github.com/rust-embedded-community/menu/releases/tag/v0.5.1
[v0.5.0]: https://github.com/rust-embedded-community/menu/releases/tag/v0.5.0
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 = "menu"
version = "0.6.0"
version = "0.6.1"
authors = ["Jonathan 'theJPster' Pallant <[email protected]>"]
description = "A simple #[no_std] command line interface."
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ struct PromptIter<'a, I, T> {
state: PromptIterState,
}

impl<'a, I, T> Clone for PromptIter<'a, I, T> {
impl<I, T> Clone for PromptIter<'_, I, T> {
fn clone(&self) -> Self {
Self {
menu_mgr: self.menu_mgr,
Expand Down Expand Up @@ -380,7 +380,7 @@ where
}
}

impl<'a, I, T, B> Runner<'a, I, T, B>
impl<I, T, B> Runner<'_, I, T, B>
where
I: embedded_io::Write,
B: AsMut<[u8]> + ?Sized,
Expand Down Expand Up @@ -456,7 +456,7 @@ where
}
}

impl<'a, I, T> InnerRunner<'a, I, T>
impl<I, T> InnerRunner<'_, I, T>
where
I: embedded_io::Write,
{
Expand Down

0 comments on commit f8a2cbb

Please sign in to comment.