version 0.9.8 release

This commit is contained in:
John Mair 2012-01-25 20:29:15 +13:00
parent 6aff583680
commit a32fa21a10
2 changed files with 8 additions and 1 deletions

View File

@ -4,6 +4,8 @@ MAJOR NEW FEATURES
- upgraded command api, https://github.com/pry/pry/wiki/Custom-commands
- added a system of hooks for customizing pry behaviour
- changed syntax checking to use eval() for improved accuracy
- added save-file command
- added gist command (removed gist-method, new gist command is more general)
complete CHANGELOG:
@ -11,7 +13,12 @@ complete CHANGELOG:
* Better syntax highlighting for rbx code code
* added cat --in to show pry input history
* prefixed temporary file names with 'pry'
* show-doc now supports -l and -b options (line numbers)
* play now supports -i and -d options
* moved UserCommandAPI command-set to pry-developer_tools plugin
* added :when_started event for hooks, called in Pry.start
* added a man page
* added rename method to Pry::CommandSet (commands can be renamed)
* added CommandSet#{before_command,after_command} for enhancing builtin commands
* added checking for namespace collisions with pry commands, set Pry.config.collision_warning
* work around namespace collisions by ensuring lines starting with a space are executed as

View File

@ -1,3 +1,3 @@
class Pry
VERSION = "0.9.8pre8"
VERSION = "0.9.8"
end