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

Release v0.6.1 #32

Merged
merged 3 commits into from
Nov 29, 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
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