Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
Plus, remove the clog configuration file,
since that's not being used anymore.
  • Loading branch information
shadows-withal committed Apr 20, 2022
1 parent c811643 commit 9ec35d8
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .clog.toml

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
<a name="4.7.1"></a>
## 4.7.1 (2022-04-20)

#### Features

- The amount of dependency crates that need to be compiled went down from ~65 to
~45 by bumping dependency versions.
- The minimum Rust version in the install scripts has been bumped to 1.56.0 (this isn't in
the release itself, since install scripts don't really get versioned)

#### Bug Fixes

- **arc1**: A small part has been rewritten using a more functional code style (#968).
- **using_as**: A small part has been refactored to use `sum` instead of `fold`, resulting
in better readability.

#### Housekeeping

- The changelog will now be manually written instead of being automatically generated by the
Git log.

<a name="4.7.0"></a>
## 4.7.0 (2022-04-14)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustlings"
version = "4.7.0"
version = "4.7.1"
authors = ["mokou <mokou@fastmail.com>", "Carol (Nichols || Goulding) <carol.nichols@gmail.com>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mod run;
mod verify;

// In sync with crate version
const VERSION: &str = "4.7.0";
const VERSION: &str = "4.7.1";

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

0 comments on commit 9ec35d8

Please sign in to comment.