summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorJohn Mair <jrmair@gmail.com>2011-02-17 18:36:39 +1300
committerJohn Mair <jrmair@gmail.com>2011-02-17 18:36:39 +1300
commit29722bb9f5cdb1b76d4f8686ef202efa3677afd2 (patch)
tree8601a2e5cef627831e4895f0e8b5b98af80a876a /CHANGELOG
parentd458573f124835baabf184c38b689a700c42c233 (diff)
downloadpry-29722bb9f5cdb1b76d4f8686ef202efa3677afd2.tar.gz
* version 0.5.0 release
* Use clipped version of Pry.view() for large objects * Exit Pry session on ^d * Use Shellwords for breaking up parameters to pry commands * Use OptionParser to parse options for default pry commands * Add version command * Refactor 'status' command: add current method info * Add meth_name_from_binding utility lambda to commands.rb * Add -M, -m, -v(erbose), -a(ll), -s(uper), -l(ocals), -i(ivars), -k(klass vars), etc options to ls * add -M(instance method) options to show-method and show-doc * add --help option to most commands * Get rid of ls_method and ls_imethods (subsumed by more powerful ls) * Get rid of show_idoc and show_imethod * Add special eval-file command that evals target file in current context
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG16
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 066f49c9..33a7427d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,19 @@
+17/2/2010 version 0.5.0
+* Use clipped version of Pry.view() for large objects
+* Exit Pry session on ^d
+* Use Shellwords for breaking up parameters to pry commands
+* Use OptionParser to parse options for default pry commands
+* Add version command
+* Refactor 'status' command: add current method info
+* Add meth_name_from_binding utility lambda to commands.rb
+* Add -M, -m, -v(erbose), -a(ll), -s(uper), -l(ocals), -i(ivars), -k(klass
+ vars), etc options to ls
+* add -M(instance method) options to show-method and show-doc
+* add --help option to most commands
+* Get rid of ls_method and ls_imethods (subsumed by more powerful ls)
+* Get rid of show_idoc and show_imethod
+* Add special eval-file command that evals target file in current context
+
27/1/2010 version 0.4.5
* fixed show_method (though fragile as it references __binding_impl__
directly, making a name change to that method difficult