Skip to content

Commit

Permalink
Merge pull request #1508 from mikel/feature/adding-additional-jruby-9.4
Browse files Browse the repository at this point in the history
Adding explicit JRuby support
  • Loading branch information
mikel authored Dec 1, 2022
2 parents f249113 + 2142d64 commit 20c9cb4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,20 @@ jobs:
timeout: 5
- ruby: 3.1
timeout: 5
- ruby: truffleruby
timeout: 50
- ruby: truffleruby-head
timeout: 50
- ruby: jruby
timeout: 5
- ruby: jruby-head
timeout: 5
- ruby: jruby-9.4
timeout: 5
- ruby: jruby-9.3
timeout: 5
- ruby: jruby-9.2
timeout: 5
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Code Improvements:
* Use Rake's default rakelib/ directory @olleolleolle
* refactor: Use Dir.glob only once in gemspec's "files" directive @olleolleolle
* Configure RSpec's zero-monkey patching mode @olleolleolle
* Added support for JRuby 9.4 @mikel

Bug Fixes:

Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,20 @@ our documentation, add new features—up to you! Thank you for pitching in.

## Compatibility

Mail supports Ruby 2.5+, including JRuby and TruffleRuby.
Mail is tested against:

* Ruby: 2.5
* Ruby: 2.6
* Ruby: 2.7
* Ruby: 3.0
* Ruby: 3.1
* JRuby: 9.2
* JRuby: 9.3
* JRuby: 9.4
* JRuby: stable
* JRuby: head
* Truffleruby: stable
* Truffleruby: head

As new versions of Ruby are released, Mail will be compatible with support for the "preview" and all "normal maintenance", "security maintenance" and the two most recent "end of life" versions listed at the [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/) page. Pull requests to assist in adding support for new preview releases are more than welcome.

Expand Down

0 comments on commit 20c9cb4

Please sign in to comment.