chore: release 5.2.0
This commit is contained in:
parent
5a03e46d69
commit
3309a01b5e
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,3 +1,20 @@
|
||||||
|
<a name="5.2.0"></a>
|
||||||
|
## 5.2.0 (2022-08-27)
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added a `reset` command
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **options2**: Convert the exercise to use tests
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- **threads3**: Fixed a typo
|
||||||
|
- **quiz1**: Adjusted the explanations to be consistent with
|
||||||
|
the tests
|
||||||
|
|
||||||
<a name="5.1.1"></a>
|
<a name="5.1.1"></a>
|
||||||
## 5.1.1 (2022-08-17)
|
## 5.1.1 (2022-08-17)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustlings"
|
name = "rustlings"
|
||||||
version = "5.1.1"
|
version = "5.2.0"
|
||||||
authors = ["Liv <mokou@fastmail.com>", "Carol (Nichols || Goulding) <carol.nichols@gmail.com>"]
|
authors = ["Liv <mokou@fastmail.com>", "Carol (Nichols || Goulding) <carol.nichols@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ mod run;
|
||||||
mod verify;
|
mod verify;
|
||||||
|
|
||||||
// In sync with crate version
|
// In sync with crate version
|
||||||
const VERSION: &str = "5.1.1";
|
const VERSION: &str = "5.2.0";
|
||||||
|
|
||||||
#[derive(FromArgs, PartialEq, Debug)]
|
#[derive(FromArgs, PartialEq, Debug)]
|
||||||
/// Rustlings is a collection of small exercises to get you used to writing and reading Rust code
|
/// Rustlings is a collection of small exercises to get you used to writing and reading Rust code
|
||||||
|
|
Loading…
Reference in New Issue