diff --git a/CHANGELOG.md b/CHANGELOG.md
index 92a83176a1045ed4fe5ebbff349369a47a07927f..ac4500d1153b8afb7ffb625462231f1f8340b3f9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,16 @@ Thanks for your interest in the Idle RPG! Feel free to contact me with ideas and
 comments, or post them in the issues of the project for public view.
 
 
+--
+## v5.2.1: released 10/28/19
+- fixed actions delay : now you wait one hour after an action, and not one hour
+per action
+- new subroutine execute_delayed in Utils to execute a subroutine after a given time
+- actions results show the raw roll and the atk/def modifier
+- the command POINTS shows how many points the user has to spend
+- fixed bug when partially matching commands caused an error
+- some text/style improvements
+
 --
 ## v5.2.0: released 10/22/19
 
diff --git a/irpg_bot.pl b/irpg_bot.pl
index dcbf7b3c334744a54c4f65efd5ad0081931dc62f..f0c04dd62dc6260089b68cd25600550cb0a97377 100644
--- a/irpg_bot.pl
+++ b/irpg_bot.pl
@@ -38,7 +38,7 @@ use Irpg::Main;
 
 my $opts = readconfig();
 
-my $version = "5.1.0";
+my $version = "5.2.1";
 
 sub help { # print help message
     (my $prog = $0) =~ s/^.*\///;