Skip to content

Commit

Permalink
release: 5.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shadows-withal committed Feb 12, 2023
1 parent 4c7e561 commit fc9fb53
Show file tree
Hide file tree
Showing 6 changed files with 314 additions and 266 deletions.
563 changes: 305 additions & 258 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustlings"
version = "5.3.0"
version = "5.4.0"
authors = [
"Liv <mokou@fastmail.com>",
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
Expand Down
9 changes: 5 additions & 4 deletions README.md
Expand Up @@ -29,11 +29,12 @@ curl -L https://raw.githubusercontent.com/rust-lang/rustlings/main/install.sh |
This will install Rustlings and give you access to the `rustlings` command. Run it to get started!

### Nix

Basically: Clone the repository at the latest tag, finally run `nix develop` or `nix-shell`.

```bash
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.3.0)
git clone -b 5.3.0 --depth 1 https://github.com/rust-lang/rustlings
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.0)
git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
cd rustlings
# if nix version > 2.3
nix develop
Expand Down Expand Up @@ -70,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 .`.

```bash
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.3.0)
git clone -b 5.3.0 --depth 1 https://github.com/rust-lang/rustlings
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.0)
git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
cd rustlings
cargo install --force --path .
```
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Expand Up @@ -22,7 +22,7 @@
rustlings =
pkgs.rustPlatform.buildRustPackage {
name = "rustlings";
version = "5.3.0";
version = "5.4.0";

buildInputs = cargoBuildInputs;

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Expand Up @@ -26,7 +26,7 @@ mod run;
mod verify;

// In sync with crate version
const VERSION: &str = "5.3.0";
const VERSION: &str = "5.4.0";

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

0 comments on commit fc9fb53

Please sign in to comment.