File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1- === master
1+ === 3.99.0 (2025-12-12)
22
33* Add support for set matchers by default, as Set will be a core class in Ruby 4 (jeremyevans)
44
Original file line number Diff line number Diff line change 1+ = New Features
2+
3+ * Set instances are now supported as matchers by default, as Set
4+ will be a core class in Ruby 4.0. A Set matcher operates
5+ similarly to an array matcher if all of the array elements are
6+ strings, with the difference that the Set matcher will perform
7+ better for large numbers of elements, since it will look for
8+ a matching entry in the set, instead of iterating over the
9+ elements of the set.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ class Roda
44 RodaMajorVersion = 3
55
66 # The minor version of Roda, updated for new feature releases of Roda.
7- RodaMinorVersion = 98
7+ RodaMinorVersion = 99
88
99 # The patch version of Roda, updated only for bug fixes from the last
1010 # feature release.
You can’t perform that action at this time.
0 commit comments