summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mair <jrmair@gmail.com>2013-02-12 01:28:11 +0100
committerJohn Mair <jrmair@gmail.com>2013-02-12 01:34:30 +0100
commitf8f4f4af58720ec6bba1cd5e5e1be496650a9af8 (patch)
treee84215a621fd6c1166cfb9830e733a7efe06603e
parent1538bc0990dbd4974ce9ca3a351cb01da0022851 (diff)
downloadpry-0-9-11-stable.tar.gz
version 0.9.12 release, see CHANGELOG for detailsv0.9.120-9-11-stable
-rw-r--r--CHANGELOG19
-rw-r--r--lib/pry/version.rb2
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index a469cea4..21cfe530 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,22 @@
+12/02/2012 version 0.9.12
+Bug fixes:
+* Fix major bug where commands broke due to slop looking at ARGV
+ instead of command parameters (#828)
+* Fix bug where pager broke in some situations (#845)
+* Fix broken rendering of some docs (#795)
+* silence warnings during failed tab-completion attempts
+* fix broken prompt when prompt is colored (#822 / #823)
+* added reload-method alias for reload-code (for backwards compat)
+* Reopen Readline.output if it is not a tty (see 1538bc0990)
+
+Features:
+* added pry --gem (see 19bfc13aa)
+* show-source now works on commands created with create_command
+* add -m (method) -c (class) and -f (file) switches to 'whereami' command
+* show-source now falls back to superclass if can't find class code
+ (displays warning)
+* show-source/show-doc now indicate when -a option is available.
+
20/01/2012 version 0.9.11.4
* fixed pager bug (wouldn't render color codes in some circumstances)
* added Pry.last_internal_error, useful for devs debugging commands
diff --git a/lib/pry/version.rb b/lib/pry/version.rb
index 5861c09b..6c30d88a 100644
--- a/lib/pry/version.rb
+++ b/lib/pry/version.rb
@@ -1,3 +1,3 @@
class Pry
- VERSION = "0.9.12pre2"
+ VERSION = "0.9.12"
end