summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorr-obert <r@newton.osaka>2017-12-09 00:42:34 +0100
committerr-obert <r-obert@users.noreply.github.com>2017-12-22 23:01:50 +0100
commit97c1493e168bdb88303ddc5a3b11b386edf104ed (patch)
tree76ada4d08f204e7cacd0977f67facd59c6ce59c1 /CHANGELOG.md
parentcebad88656f5c092ce01c30c6c0a279cef68ca8f (diff)
downloadpry-97c1493e168bdb88303ddc5a3b11b386edf104ed.tar.gz
fix a bug where "cd Hash.new" reported self as a Pry::Config in prompt.
from_hash is recursive, turning Hash values into Pry::Config objects. fix #1724
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 630491f8..87df7c21 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,13 @@ See pull request [#1694](https://github.com/pry/pry/pull/1694).
See pull request [#1701](https://github.com/pry/pry/pull/1701).
+#### Bug fixes
+
+* Fix a bug where 'cd Hash.new' reported self as an instance of Pry::Config
+ in the prompt.
+
+See pull request [#1723](https://github.com/pry/pry/pull/1723)
+
#### Pry developers
* Optionally skip a spec on specific Ruby engine(s) by providing `expect_failure: [:mri, :jruby]`