Skip to content

Commit 37e50b3

Browse files
authored
🔀 Merge pull request #276 from nevans/require-ruby-3.1
💥 Drop ruby 2.7 and 3.0 support, and require 3.1
2 parents e588adb + 6a39c56 commit 37e50b3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
88
with:
99
engine: cruby
10-
min_version: 2.7
10+
min_version: 3.1
1111

1212
build:
1313
needs: ruby-versions
@@ -26,6 +26,6 @@ jobs:
2626
with:
2727
ruby-version: ${{ matrix.ruby }}
2828
bundler-cache: true
29-
rubygems: 3.4.22
29+
rubygems: 3.5.14
3030
- name: Run test
3131
run: bundle exec rake test

lib/net/imap.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ module Net
717717
# * {IMAP URLAUTH Authorization Mechanism Registry}[https://www.iana.org/assignments/urlauth-authorization-mechanism-registry/urlauth-authorization-mechanism-registry.xhtml]
718718
#
719719
class IMAP < Protocol
720-
VERSION = "0.4.14"
720+
VERSION = "0.5.0-dev"
721721

722722
# Aliases for supported capabilities, to be used with the #enable command.
723723
ENABLE_ALIASES = {

net-imap.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
1616
spec.summary = %q{Ruby client api for Internet Message Access Protocol}
1717
spec.description = %q{Ruby client api for Internet Message Access Protocol}
1818
spec.homepage = "https://github.com/ruby/net-imap"
19-
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.3")
19+
spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
2020
spec.licenses = ["Ruby", "BSD-2-Clause"]
2121

2222
spec.metadata["homepage_uri"] = spec.homepage

0 commit comments

Comments
 (0)