release: 5.4.1
This commit is contained in:
parent
e4971ec7b3
commit
7f1754ecc5
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,3 +1,19 @@
|
||||||
|
<a name="5.4.1"></a>
|
||||||
|
## 5.4.1 (2023-03-10)
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- `vecs`: Added links to `iter_mut` and `map` to README.md
|
||||||
|
- `cow1`: Changed main to tests
|
||||||
|
- `iterators1`: Formatted according to rustfmt
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- `errors5`: Unified undisclosed type notation
|
||||||
|
- `arc1`: Improved readability by avoiding implicit dereference
|
||||||
|
- `macros4`: Prevented auto-fix by adding `#[rustfmt::skip]`
|
||||||
|
- `cli`: Actually show correct progress percentages
|
||||||
|
|
||||||
<a name="5.4.0"></a>
|
<a name="5.4.0"></a>
|
||||||
|
|
||||||
## 5.4.0 (2023-02-12)
|
## 5.4.0 (2023-02-12)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustlings"
|
name = "rustlings"
|
||||||
version = "5.4.0"
|
version = "5.4.1"
|
||||||
authors = [
|
authors = [
|
||||||
"Liv <mokou@fastmail.com>",
|
"Liv <mokou@fastmail.com>",
|
||||||
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
||||||
|
|
|
@ -33,8 +33,8 @@ This will install Rustlings and give you access to the `rustlings` command. Run
|
||||||
Basically: Clone the repository at the latest tag, finally run `nix develop` or `nix-shell`.
|
Basically: Clone the repository at the latest tag, finally run `nix develop` or `nix-shell`.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.0)
|
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.1)
|
||||||
git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
|
git clone -b 5.4.1 --depth 1 https://github.com/rust-lang/rustlings
|
||||||
cd rustlings
|
cd rustlings
|
||||||
# if nix version > 2.3
|
# if nix version > 2.3
|
||||||
nix develop
|
nix develop
|
||||||
|
@ -71,8 +71,8 @@ If you get a permission denied message, you might have to exclude the directory
|
||||||
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
|
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.0)
|
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.1)
|
||||||
git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
|
git clone -b 5.4.1 --depth 1 https://github.com/rust-lang/rustlings
|
||||||
cd rustlings
|
cd rustlings
|
||||||
cargo install --force --path .
|
cargo install --force --path .
|
||||||
```
|
```
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
rustlings =
|
rustlings =
|
||||||
pkgs.rustPlatform.buildRustPackage {
|
pkgs.rustPlatform.buildRustPackage {
|
||||||
name = "rustlings";
|
name = "rustlings";
|
||||||
version = "5.4.0";
|
version = "5.4.1";
|
||||||
|
|
||||||
buildInputs = cargoBuildInputs;
|
buildInputs = cargoBuildInputs;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ mod run;
|
||||||
mod verify;
|
mod verify;
|
||||||
|
|
||||||
// In sync with crate version
|
// In sync with crate version
|
||||||
const VERSION: &str = "5.4.0";
|
const VERSION: &str = "5.4.1";
|
||||||
|
|
||||||
#[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