summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2020-04-12 15:34:51 +0800
committerGitHub <noreply@github.com>2020-04-12 15:34:51 +0800
commit9d9ae4a0b0bd487bb41170c834b3fa417e161f23 (patch)
treef3ab39b0abcfee2e73935f3a7fa80ae765de0010
parent09796403969366947fcd762e9b6b849fcef5e588 (diff)
parente6f7a940a6da5f925fd58ad758fbea3a5e889e54 (diff)
downloadpry-0.13.1.tar.gz
Merge pull request #2127 from pry/release-0-13-1v0.13.1
Release v0.13.1
-rw-r--r--CHANGELOG.md13
-rw-r--r--lib/pry/version.rb2
2 files changed, 9 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 180b7737..b072fbf4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,17 @@
### master
+### [v0.13.1][v0.13.1] (April 12, 2020)
+
#### Bug fixes
* Fixed bug where on invalid input only the last syntax error is displayed
(instead of all of them) ([#2117](https://github.com/pry/pry/pull/2117))
-
-#### API changes
-
-* `Pry::Config` returns `nil` on undefined option instead of raising
- `NoMethodError` (usually invoked via `Pry.config.foo_option` calls)
+* Fixed `Pry::Config` raising `NoMethodError` on undefined option instead of
+ returning `nil` (usually invoked via `Pry.config.foo_option` calls)
([#2126](https://github.com/pry/pry/pull/2126))
+* Fixed `help` command not displaying regexp aliases properly
+ ([#2120](https://github.com/pry/pry/pull/2120))
+* Fixed `pry-backtrace` not working ([#2122](https://github.com/pry/pry/pull/2122))
### [v0.13.0][v0.13.0] (March 21, 2020)
@@ -1071,3 +1073,4 @@ complete CHANGELOG:
[v0.12.1]: https://github.com/pry/pry/releases/tag/v0.12.1
[v0.12.2]: https://github.com/pry/pry/releases/tag/v0.12.2
[v0.13.0]: https://github.com/pry/pry/releases/tag/v0.13.0
+[v0.13.1]: https://github.com/pry/pry/releases/tag/v0.13.1
diff --git a/lib/pry/version.rb b/lib/pry/version.rb
index cbc24e75..2ecd02cf 100644
--- a/lib/pry/version.rb
+++ b/lib/pry/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
class Pry
- VERSION = '0.13.0'.freeze
+ VERSION = '0.13.1'.freeze
end