diff --git a/CHANGES b/CHANGES index e3d7059c..4d507956 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ +1.7.0 (2024-01-07) +===================== +* Add support for ruby 3.3.* (Charlie Savage) +* Remove support for ruby 2.7.* (Charlie Savage) +* Fix crash caused by referencing Profile Ruby objects from Method objects that were being moved + by GC compaction (Charlie Savage) + 1.6.3 (2023-04-20) ===================== * Remove debug code unintentionally left in ruby-prof command line program (Charlie Savage) diff --git a/lib/ruby-prof/version.rb b/lib/ruby-prof/version.rb index 647f7dbe..6f944ca8 100644 --- a/lib/ruby-prof/version.rb +++ b/lib/ruby-prof/version.rb @@ -1,3 +1,3 @@ module RubyProf - VERSION = "1.6.3" + VERSION = "1.7.0" end