From 3309a01b5e7f18da6409435151e8ebe0c0a697dc Mon Sep 17 00:00:00 2001
From: mokou <mokou@fastmail.com>
Date: Sat, 27 Aug 2022 19:48:15 +0100
Subject: [PATCH] chore: release 5.2.0

---
 CHANGELOG.md | 17 +++++++++++++++++
 Cargo.toml   |  2 +-
 src/main.rs  |  2 +-
 3 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index cec41c5..0b15cf9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,20 @@
+<a name="5.2.0"></a>
+## 5.2.0 (2022-08-27)
+
+#### Added
+
+- Added a `reset` command
+
+#### Changed
+
+- **options2**: Convert the exercise to use tests
+
+#### Fixed
+
+- **threads3**: Fixed a typo
+- **quiz1**: Adjusted the explanations to be consistent with
+  the tests
+
 <a name="5.1.1"></a>
 ## 5.1.1 (2022-08-17)
 
diff --git a/Cargo.toml b/Cargo.toml
index d5fd93c..25cd7bf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "rustlings"
-version = "5.1.1"
+version = "5.2.0"
 authors = ["Liv <mokou@fastmail.com>", "Carol (Nichols || Goulding) <carol.nichols@gmail.com>"]
 edition = "2021"
 
diff --git a/src/main.rs b/src/main.rs
index 9bf75e3..8eebc08 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -26,7 +26,7 @@ mod run;
 mod verify;
 
 // In sync with crate version
-const VERSION: &str = "5.1.1";
+const VERSION: &str = "5.2.0";
 
 #[derive(FromArgs, PartialEq, Debug)]
 /// Rustlings is a collection of small exercises to get you used to writing and reading Rust code