Skip to content

Commit 6588d9b

Browse files
committed
chore: bump version
1 parent d27f5a7 commit 6588d9b

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
<a name="4.8.0"></a>
2+
## 4.8.0 (2022-07-01)
3+
4+
#### Features
5+
6+
- Added a progress indicator for `rustlings watch`.
7+
- The installation script now checks for Rustup being installed.
8+
- Added a `rustlings lsp` command to enable `rust-analyzer`.
9+
10+
#### Bug Fixes
11+
12+
- **move_semantics5**: Replaced "in vogue" with "in scope" in hint.
13+
- **if2**: Fixed a typo in the hint.
14+
- **variables1**: Fixed an incorrect line reference in the hint.
15+
- Fixed an out of bounds check in the installation Bash script.
16+
17+
#### Housekeeping
18+
19+
- Replaced the git.io URL with the fully qualified URL because of git.io's sunsetting.
20+
- Removed the deprecated Rust GitPod extension.
21+
122
<a name="4.7.1"></a>
223
## 4.7.1 (2022-04-20)
324

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

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