Skip to content

Commit

Permalink
🔀 Merge pull request #276 from nevans/require-ruby-3.1
Browse files Browse the repository at this point in the history
💥 Drop ruby 2.7 and 3.0 support, and require 3.1
  • Loading branch information
nevans authored Jun 23, 2024
2 parents e588adb + 6a39c56 commit 37e50b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
engine: cruby
min_version: 2.7
min_version: 3.1

build:
needs: ruby-versions
Expand All @@ -26,6 +26,6 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
rubygems: 3.4.22
rubygems: 3.5.14
- name: Run test
run: bundle exec rake test
2 changes: 1 addition & 1 deletion lib/net/imap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ module Net
# * {IMAP URLAUTH Authorization Mechanism Registry}[https://www.iana.org/assignments/urlauth-authorization-mechanism-registry/urlauth-authorization-mechanism-registry.xhtml]
#
class IMAP < Protocol
VERSION = "0.4.14"
VERSION = "0.5.0-dev"

# Aliases for supported capabilities, to be used with the #enable command.
ENABLE_ALIASES = {
Expand Down
2 changes: 1 addition & 1 deletion net-imap.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.summary = %q{Ruby client api for Internet Message Access Protocol}
spec.description = %q{Ruby client api for Internet Message Access Protocol}
spec.homepage = "https://github.com/ruby/net-imap"
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.3")
spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
spec.licenses = ["Ruby", "BSD-2-Clause"]

spec.metadata["homepage_uri"] = spec.homepage
Expand Down

0 comments on commit 37e50b3

Please sign in to comment.