updated CHANGELOG and TODO, almost ready for 0.9.3 release

This commit is contained in:
John Mair 2011-07-27 05:17:20 +12:00
parent 04358f7491
commit cda95022ed
2 changed files with 8 additions and 8 deletions

View File

@ -1,16 +1,17 @@
*/7/2011 version 0.9.3
* hist command now excludes last line of input (the command invocation itself)
* hist now has `history` alias
* cat --ex (cats 5 lines above and below line in file where exception was raised)
* edit --ex (edits line in file where exception was raised)
* edit -t (opens a temporary file and evals it in current context when closed)
* `pry -r` requires now happen after plugin loading (so as not to interfere with
* new Pry.config.disable_auto_reload option, for turning off auto reloading by edit-method and related
* new Pry.config.disable_auto_reload option, for turning off auto reloading by edit-method and related (thanks ryanf)
* add better error messages for `cd` command
* fixed exotic object regression - BasicObject.new etc now return "=> unknown"
* added reload-method command (reloads the associated file of a method)
* converted: import => import-set, version => pry-version, install => install-command
* cat --ex (cats 5 lines above and below line in file where exception was raised)
* edit --ex (edits line in file where exception was raised)
* Pry.config.command_prefix support
* edit -t (opens a temporary file and evals it in current context when closed)
* Pry.config.command_prefix support (thanks ryanf!)
* fixed indentation for simple-prompt
* hist command now excludes last line of input (the command invocation itself)
* hist now has `history` alias
21/6/2011 version 0.9.2
* fixed string interpolation bug (caused valid ruby code not to execute, sorry!)

1
TODO
View File

@ -5,7 +5,6 @@
* new Pry.config.disable_auto_reload option, for turning off auto reloading by edit-method and related
* add better error messages for `cd` command
* add command_prefix
* add toggle-command
* change some command names to include hyphen, e.g version => pry-version, install => install-command
* do cat --ex and edit --ex
* add reload-method