Skip to content

Commit fc9fb53

Browse files
committed
release: 5.4.0
1 parent 4c7e561 commit fc9fb53

File tree

6 files changed

+314
-266
lines changed

6 files changed

+314
-266
lines changed

CHANGELOG.md

Lines changed: 305 additions & 258 deletions
Large diffs are not rendered by default.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.3.0"
3+
version = "5.4.0"
44
authors = [
55
"Liv <mokou@fastmail.com>",
66
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ curl -L https://raw.githubusercontent.com/rust-lang/rustlings/main/install.sh |
2929
This will install Rustlings and give you access to the `rustlings` command. Run it to get started!
3030

3131
### Nix
32+
3233
Basically: Clone the repository at the latest tag, finally run `nix develop` or `nix-shell`.
3334

3435
```bash
35-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.3.0)
36-
git clone -b 5.3.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.0)
37+
git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
3738
cd rustlings
3839
# if nix version > 2.3
3940
nix develop
@@ -70,8 +71,8 @@ If you get a permission denied message, you might have to exclude the directory
7071
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
7172

7273
```bash
73-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.3.0)
74-
git clone -b 5.3.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.0)
75+
git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
7576
cd rustlings
7677
cargo install --force --path .
7778
```

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.3.0";
25+
version = "5.4.0";
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.3.0";
29+
const VERSION: &str = "5.4.0";
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)