Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/irb/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#

module IRB # :nodoc:
VERSION = "1.16.0"
VERSION = "1.17.0"
@RELEASE_VERSION = VERSION
@LAST_UPDATE_DATE = "2025-12-17"
@LAST_UPDATE_DATE = "2026-02-08"
end
2 changes: 2 additions & 0 deletions test/irb/test_pager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ def test_overflow
end

def test_callback_delay
omit if RUBY_ENGINE == "truffleruby"

actual_events = []
overflow_callback = ->(lines) do
actual_events << [:callback_called, lines]
Expand Down
2 changes: 2 additions & 0 deletions test/irb/test_ruby_lex.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ def teardown
end

def test_interpolate_token_with_heredoc_and_unclosed_embexpr
omit if RUBY_ENGINE == "truffleruby"

code = <<~'EOC'
①+<<A-②
#{③*<<B/④
Expand Down
Loading