From e0de9f97ccec7932b06b2bd0bbd5a29d0283d657 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Thu, 10 Sep 2015 13:05:56 +0000 Subject: [PATCH] Prepare release v0.8.4 --- Changelog.md | 3 ++- lib/mutant/version.rb | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index c64bdc92..827e94c6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,9 +1,10 @@ -# v0.8.4 2015-09-xx +# v0.8.4 2015-09-10 * Add mutation from `a != b` to `!a.eql?(b)` and `!a.equal?(b)` #417 * Add mutation `A.const_get(:B)` -> `A::B` #426 * Add mutation `def foo(*args); end` into `def foo(*args); args = []; end` #423 * Add mutation from `foo.baz { bar }` to `foo.bar` #416 +* Update anima dependency to 0.3.0 # v0.8.3 2015-09-01 diff --git a/lib/mutant/version.rb b/lib/mutant/version.rb index 8869b1c0..25b860a8 100644 --- a/lib/mutant/version.rb +++ b/lib/mutant/version.rb @@ -1,4 +1,4 @@ module Mutant # Current mutant version - VERSION = '0.8.3'.freeze + VERSION = '0.8.4'.freeze end # Mutant