diff --git a/CHANGELOG.md b/CHANGELOG.md index 52294fc..980fac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +#### v0.3.0 2017-10-21 +* Add slightly better support for macros (jwoertink) #47 +* Add --no-debug flag to improve speed (faustinoaq) #52 +* Implementation of the paste mode (Porcupine96) #56 +* Catch constant assignment and set it outside of the exec method (jwoertink) #59 +* Last result local '__' (veelenga) #63 +* Fixed error with unterminated char literal (jwoertink) #50 +* Usage warning (veelenga) #66 + #### v0.2.14 2017-01-31 * (fix) behavioral difference when reassigning variable in multi-line blocks (jwoertink) diff --git a/shard.yml b/shard.yml index 2c9b5d5..7379ef9 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: icr -version: 0.2.14 +version: 0.3.0 authors: - Potapov Sergey diff --git a/src/icr.cr b/src/icr.cr index 9657d03..cbba1b2 100644 --- a/src/icr.cr +++ b/src/icr.cr @@ -13,7 +13,7 @@ require "./icr/syntax_check_result" require "./icr/console" module Icr - VERSION = "0.2.14" + VERSION = "0.3.0" AUTHOR = "Potapov Sergey" HOMEPAGE = "https://github.com/greyblake/crystal-icr"