Skip to content

Commit d0c7b06

Browse files
committed
chore: release 5.1.1
1 parent 5f9dd12 commit d0c7b06

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="5.1.1"></a>
2+
## 5.1.1 (2022-08-17)
3+
4+
#### Bug Fixes
5+
6+
- Fixed an incorrect assertion in options1
7+
18
<a name="5.1.0"></a>
29
## 5.1.0 (2022-08-16)
310

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

README.md

Lines changed: 2 additions & 2 deletions
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.0)
61-
git clone -b 5.1.0 --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.1.1)
61+
git clone -b 5.1.1 --depth 1 https://github.com/rust-lang/rustlings
6262
cd rustlings
6363
cargo install --force --path .
6464
```

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