Skip to content

Commit

Permalink
Loosen IRB dependency to allow IRB 1.13, fixes #57, release v4.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
janlelis committed Jul 3, 2024
1 parent cc4e065 commit 5f9ac3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Irbtools Changelog

## 4.0.10

* Loosen IRB dependency to allow IRB 1.13, fixes #57

## 4.0.9

* Fix loading command `Base` class and require IRB 1.12 to make sure it is available
Expand Down
2 changes: 1 addition & 1 deletion irbtools.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
# Dependencies

# Core Functionality
s.add_dependency %q<irb>, "~> 1.12.0"
s.add_dependency %q<irb>, ">= 1.12.0", "< 1.14"
s.add_dependency %q<every_day_irb>, "~> 2.2"
s.add_dependency %q<fancy_irb>, "~> 2.1"
s.add_dependency %q<wirb>, "~> 2.0", ">= 2.2.1"
Expand Down
2 changes: 1 addition & 1 deletion lib/irbtools/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Irbtools
VERSION = "4.0.9"
VERSION = "4.0.10"
end

0 comments on commit 5f9ac3f

Please sign in to comment.