diff --git a/CHANGELOG.md b/CHANGELOG.md index 76297af..b7cd25b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +#### v0.9.0 2021-09-25 +* Add color highlight while you type (thanks to @sugarfi) +* Use magic comments `#exit` and `#quit` to leave ICR (thanks to @sugarfi) +* Support for latest Crystal (thanks to @mamantoha) +* Add magic comment `#help` command to get available commands. (thanks to @sugarfi) +* Better version support with Crystal (thanks to @HashNuke) + #### v0.8.0 2020-02-18 * Crystal 0.33.0 compatibility #118 (thanks to @tenebrousedge) diff --git a/shard.yml b/shard.yml index 09808ce..717f0c4 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: icr -version: 0.8.0 +version: 0.9.0 crystal: ">= 0.33.0" diff --git a/src/icr.cr b/src/icr.cr index 38e55d2..ddd2c0a 100644 --- a/src/icr.cr +++ b/src/icr.cr @@ -14,7 +14,7 @@ require "./icr/highlighter" require "./icr/console" module Icr - VERSION = "0.8.0" + VERSION = "0.9.0" AUTHOR = "Potapov Sergey" HOMEPAGE = "https://github.com/crystal-community/icr"