m recently dropped Ruby 2.6 because it is EOL, and pinned the required Ruby to 2.7.
But, m is building against Minitest 4.x, who's last release (4.7.5) was on June 22, 2013.
And m does not specify a version of test-unit, and so the CI build uses the current version which is 3.5.5.
(For the record, the last release of test-unit 2.x (2.5.5) was on May 18, 2013.)
So I am wondering how much backwards compatibility m is interested in maintaining.
Is it worth building against 10 year old dependencies when it drops Ruby 2.6.0 which is only 5 years old.
tl;dr - I would like to either:
- Drop Minitest 4.x
- Add test-unit 2.x
What is everyone's opinion on this?
mrecently dropped Ruby 2.6 because it is EOL, and pinned the required Ruby to 2.7.But,
mis building against Minitest 4.x, who's last release (4.7.5) was on June 22, 2013.And
mdoes not specify a version of test-unit, and so the CI build uses the current version which is 3.5.5.(For the record, the last release of test-unit 2.x (2.5.5) was on May 18, 2013.)
So I am wondering how much backwards compatibility
mis interested in maintaining.Is it worth building against 10 year old dependencies when it drops Ruby 2.6.0 which is only 5 years old.
tl;dr - I would like to either:
What is everyone's opinion on this?