From 3cfe5f939043b8d61caf242f0bfa4814d699a5fb Mon Sep 17 00:00:00 2001 From: Damir Svrtan Date: Tue, 4 Feb 2020 21:38:17 -0800 Subject: [PATCH] Bump to version 0.8.2 --- CHANGELOG.md | 4 ++++ lib/fasterer/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19392b5..8fc3424 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.8.2 + +- Fixes [#77](https://github.com/DamirSvrtan/fasterer/issues/77). An error occurs on the symbol to proc check when somebody invokes a method with no arguments on an array or range inside of the inspected block. Seems like a bug in the inspected code, but nevertheless it is a code path we need to support. + ## 0.8.1 - Ignore lambda literals when checking symbol to proc. Thanks to [kiyot](https://github.com/kiyot) for his fix in PR [#74](https://github.com/DamirSvrtan/fasterer/pull/74). diff --git a/lib/fasterer/version.rb b/lib/fasterer/version.rb index dee8389..c7b2fba 100644 --- a/lib/fasterer/version.rb +++ b/lib/fasterer/version.rb @@ -1,3 +1,3 @@ module Fasterer - VERSION = '0.8.1' + VERSION = '0.8.2' end