Skip to content

Commit

Permalink
Merge pull request #2127 from pry/release-0-13-1
Browse files Browse the repository at this point in the history
Release v0.13.1
  • Loading branch information
kyrylo committed Apr 12, 2020
2 parents 0979640 + e6f7a94 commit 9d9ae4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions 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)

Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion 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

0 comments on commit 9d9ae4a

Please sign in to comment.