Skip to content

Commit 9ad884a

Browse files
committed
chore: bump version
1 parent 40b1b07 commit 9ad884a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

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.2.1"
3+
version = "5.3.0"
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
@@ -32,8 +32,8 @@ This will install Rustlings and give you access to the `rustlings` command. Run
3232
Basically: Clone the repository at the latest tag, finally run `nix develop` or `nix-shell`.
3333

3434
```bash
35-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.2.1)
36-
git clone -b 5.2.1 --depth 1 https://github.com/rust-lang/rustlings
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
3737
cd rustlings
3838
# if nix version > 2.3
3939
nix develop
@@ -70,8 +70,8 @@ If you get a permission denied message, you might have to exclude the directory
7070
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
7171

7272
```bash
73-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.2.1)
74-
git clone -b 5.2.1 --depth 1 https://github.com/rust-lang/rustlings
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
7575
cd rustlings
7676
cargo install --force --path .
7777
```

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
rustlings =
1818
pkgs.rustPlatform.buildRustPackage {
1919
name = "rustlings";
20-
version = "5.2.1";
20+
version = "5.3.0";
2121

2222
src = with pkgs.lib; cleanSourceWith {
2323
src = self;

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.2.1";
29+
const VERSION: &str = "5.3.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)