Skip to content

Commit f2de12a

Browse files
author
liv
committed
release: 5.5.1
1 parent 2d544f1 commit f2de12a

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="5.5.1"></a>
2+
## 5.5.1 (2023-05-17)
3+
4+
#### Fixed
5+
6+
- Reverted `rust-project.json` path generation due to an upstream `rust-analyzer` fix.
7+
18
<a name="5.5.0"></a>
29
## 5.5.0 (2023-05-17)
310

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustlings"
33
description = "Small exercises to get you used to reading and writing Rust code!"
4-
version = "5.5.0"
4+
version = "5.5.1"
55
authors = [
66
77
"Carol (Nichols || Goulding) <[email protected]>",

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ This will install Rustlings and give you access to the `rustlings` command. Run
4040
Basically: Clone the repository at the latest tag, finally run `nix develop` or `nix-shell`.
4141

4242
```bash
43-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.5.0)
44-
git clone -b 5.5.0 --depth 1 https://github.com/rust-lang/rustlings
43+
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.5.1)
44+
git clone -b 5.5.1 --depth 1 https://github.com/rust-lang/rustlings
4545
cd rustlings
4646
# if nix version > 2.3
4747
nix develop
@@ -78,8 +78,8 @@ If you get a permission denied message, you might have to exclude the directory
7878
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
7979

8080
```bash
81-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.5.0)
82-
git clone -b 5.5.0 --depth 1 https://github.com/rust-lang/rustlings
81+
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.5.1)
82+
git clone -b 5.5.1 --depth 1 https://github.com/rust-lang/rustlings
8383
cd rustlings
8484
cargo install --force --path .
8585
```

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
rustlings =
2323
pkgs.rustPlatform.buildRustPackage {
2424
name = "rustlings";
25-
version = "5.5.0";
25+
version = "5.5.1";
2626

2727
buildInputs = cargoBuildInputs;
2828

src/main.rs

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