Skip to content

Commit 9ec35d8

Browse files
chore: bump version
Plus, remove the clog configuration file, since that's not being used anymore.
1 parent c811643 commit 9ec35d8

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

.clog.toml

-4
This file was deleted.

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
<a name="4.7.1"></a>
2+
## 4.7.1 (2022-04-20)
3+
4+
#### Features
5+
6+
- The amount of dependency crates that need to be compiled went down from ~65 to
7+
~45 by bumping dependency versions.
8+
- The minimum Rust version in the install scripts has been bumped to 1.56.0 (this isn't in
9+
the release itself, since install scripts don't really get versioned)
10+
11+
#### Bug Fixes
12+
13+
- **arc1**: A small part has been rewritten using a more functional code style (#968).
14+
- **using_as**: A small part has been refactored to use `sum` instead of `fold`, resulting
15+
in better readability.
16+
17+
#### Housekeeping
18+
19+
- The changelog will now be manually written instead of being automatically generated by the
20+
Git log.
21+
122
<a name="4.7.0"></a>
223
## 4.7.0 (2022-04-14)
324

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 = "4.7.0"
3+
version = "4.7.1"
44
authors = ["mokou <[email protected]>", "Carol (Nichols || Goulding) <[email protected]>"]
55
edition = "2021"
66

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ mod run;
2424
mod verify;
2525

2626
// In sync with crate version
27-
const VERSION: &str = "4.7.0";
27+
const VERSION: &str = "4.7.1";
2828

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

0 commit comments

Comments
 (0)