From 9ecdaf3988ff94bc01086a459fa517f9da8e13a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 17 Apr 2020 18:56:16 +0200 Subject: [PATCH 1/2] Fix unreleased diff link in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5889dc56..3902057e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -812,7 +812,7 @@ * Initial release. -[Unreleased]: https://github.com/deivid-rodriguez/byebug/compare/v10.0.2...HEAD +[Unreleased]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.1...HEAD [11.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.0...v11.1.1 [11.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v11.0.1...v11.1.0 [11.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v11.0.0...v11.0.1 From b3e02eb8b0e9212c08f3fe4f9f2d21ef5cfe84ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 17 Apr 2020 18:57:15 +0200 Subject: [PATCH 2/2] Get ready for 11.1.2 release --- CHANGELOG.md | 5 ++++- Gemfile.lock | 2 +- lib/byebug/version.rb | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3902057e7..7dab399cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [11.1.2] - 2020-04-17 + ### Fixed * [#657](https://github.com/deivid-rodriguez/byebug/pull/657): crash when hitting \ due to IRB completion mechanism included in the default ruby 2.7 version of the `irb` gem ([@terceiro]). @@ -812,7 +814,8 @@ * Initial release. -[Unreleased]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.1...HEAD +[Unreleased]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.2...HEAD +[11.1.2]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.1...v11.1.2 [11.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.0...v11.1.1 [11.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v11.0.1...v11.1.0 [11.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v11.0.0...v11.0.1 diff --git a/Gemfile.lock b/Gemfile.lock index e7c01e5c9..878fa918e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - byebug (11.1.1) + byebug (11.1.2) GEM remote: https://rubygems.org/ diff --git a/lib/byebug/version.rb b/lib/byebug/version.rb index 2093c67b6..4377d26d3 100644 --- a/lib/byebug/version.rb +++ b/lib/byebug/version.rb @@ -4,5 +4,5 @@ # Reopen main module to define the library version # module Byebug - VERSION = "11.1.1" + VERSION = "11.1.2" end