Skip to content

Commit c923e7a

Browse files
committed
chore: release 5.2.1
1 parent c838d44 commit c923e7a

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<a name="5.2.1"></a>
2+
## 5.2.1 (2022-09-06)
3+
4+
#### Fixed
5+
6+
- **quiz1**: Reworded the comment to actually reflect what's going on in the tests.
7+
Also added another assert just to make sure.
8+
- **rc1**: Fixed a typo in the hint.
9+
- **lifetimes**: Add quotes to the `println!` output, for readability.
10+
11+
#### Housekeeping
12+
13+
- Fixed a typo in README.md
14+
115
<a name="5.2.0"></a>
216
## 5.2.0 (2022-08-27)
317

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,6 +1,6 @@
11
[package]
22
name = "rustlings"
3-
version = "5.2.0"
3+
version = "5.2.1"
44
authors = ["Liv <[email protected]>", "Carol (Nichols || Goulding) <[email protected]>"]
55
edition = "2021"
66

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ If you get a permission denied message, you might have to exclude the directory
5757
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
5858

5959
```bash
60-
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.1.1)
61-
git clone -b 5.1.1 --depth 1 https://github.com/rust-lang/rustlings
60+
# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.2.1)
61+
git clone -b 5.2.1 --depth 1 https://github.com/rust-lang/rustlings
6262
cd rustlings
6363
cargo install --force --path .
6464
```

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