Skip to content

Commit 7f1754e

Browse files
author
liv
committed
release: 5.4.1
1 parent e4971ec commit 7f1754e

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
<a name="5.4.1"></a>
2+
## 5.4.1 (2023-03-10)
3+
4+
#### Changed
5+
6+
- `vecs`: Added links to `iter_mut` and `map` to README.md
7+
- `cow1`: Changed main to tests
8+
- `iterators1`: Formatted according to rustfmt
9+
10+
#### Fixed
11+
12+
- `errors5`: Unified undisclosed type notation
13+
- `arc1`: Improved readability by avoiding implicit dereference
14+
- `macros4`: Prevented auto-fix by adding `#[rustfmt::skip]`
15+
- `cli`: Actually show correct progress percentages
16+
117
<a name="5.4.0"></a>
218

319
## 5.4.0 (2023-02-12)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustlings"
3-
version = "5.4.0"
3+
version = "5.4.1"
44
authors = [
55
"Liv <mokou@fastmail.com>",
66
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ This will install Rustlings and give you access to the `rustlings` command. Run
3333
Basically: Clone the repository at the latest tag, finally run `nix develop` or `nix-shell`.
3434

3535
```bash
36-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.0)
37-
git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
36+
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.1)
37+
git clone -b 5.4.1 --depth 1 https://github.com/rust-lang/rustlings
3838
cd rustlings
3939
# if nix version > 2.3
4040
nix develop
@@ -71,8 +71,8 @@ If you get a permission denied message, you might have to exclude the directory
7171
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
7272

7373
```bash
74-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.0)
75-
git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
74+
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.1)
75+
git clone -b 5.4.1 --depth 1 https://github.com/rust-lang/rustlings
7676
cd rustlings
7777
cargo install --force --path .
7878
```

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
rustlings =
2323
pkgs.rustPlatform.buildRustPackage {
2424
name = "rustlings";
25-
version = "5.4.0";
25+
version = "5.4.1";
2626

2727
buildInputs = cargoBuildInputs;
2828

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mod run;
2626
mod verify;
2727

2828
// In sync with crate version
29-
const VERSION: &str = "5.4.0";
29+
const VERSION: &str = "5.4.1";
3030

3131
#[derive(FromArgs, PartialEq, Debug)]
3232
/// Rustlings is a collection of small exercises to get you used to writing and reading Rust code

0 commit comments

Comments
 (0)