From 6976a4e3e5db110da3fff77aa6a1462e88ee101e Mon Sep 17 00:00:00 2001 From: Yuji Nakayama Date: Thu, 8 May 2014 07:13:10 +0900 Subject: [PATCH] Bump up version to 1.13.1 --- CHANGELOG.md | 2 ++ lib/transpec/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2bc081..f064a11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Development +## v1.13.1 + * Fix a bug where multiline expression `expect(obj).to receive(:message)\n.and_return { value }` was converted to `expect(obj).to.receive(:message)\n { value }` and the block was interpreted as a hash literal. ([#60](https://github.com/yujinakayama/transpec/issues/60)) * Fix a bug where dynamic analysis were not run partially when there are same structure nodes in an AST with `ast` gem 2.0. diff --git a/lib/transpec/version.rb b/lib/transpec/version.rb index c9e8dd3..0ed4c2d 100644 --- a/lib/transpec/version.rb +++ b/lib/transpec/version.rb @@ -5,7 +5,7 @@ module Transpec module Version MAJOR = 1 MINOR = 13 - PATCH = 0 + PATCH = 1 def self.to_s [MAJOR, MINOR, PATCH].join('.')