Skip to content

Commit f29567e

Browse files
committed
Drop Ruby v3.1 and update copyright.
1 parent 0ce44b2 commit f29567e

File tree

24 files changed

+25
-24
lines changed

24 files changed

+25
-24
lines changed

.github/workflows/test-external.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
- macos
2121

2222
ruby:
23-
- "3.1"
2423
- "3.2"
2524
- "3.3"
2625
- "3.4"

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
- macos
2222

2323
ruby:
24-
- "3.1"
2524
- "3.2"
2625
- "3.3"
2726
- "3.4"

.rubocop.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ Layout/EmptyLinesAroundClassBody:
4545
Layout/EmptyLinesAroundModuleBody:
4646
Enabled: true
4747

48+
Layout/EmptyLineAfterMagicComment:
49+
Enabled: true
50+
4851
Style/FrozenStringLiteralComment:
4952
Enabled: true
5053

async-dns.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Gem::Specification.new do |spec|
2323

2424
spec.files = Dir.glob(["{lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
2525

26-
spec.required_ruby_version = ">= 3.1"
26+
spec.required_ruby_version = ">= 3.2"
2727

28-
spec.add_dependency "async"
28+
spec.add_dependency "async"
2929
spec.add_dependency "io-endpoint"
3030
end

config/sus.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2024, by Samuel Williams.
4+
# Copyright, 2024-2025, by Samuel Williams.
55

66
require "covered/sus"
77
include Covered::Sus

examples/http/cloudflare.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# frozen_string_literal: true
33

44
# Released under the MIT License.
5-
# Copyright, 2018-2024, by Samuel Williams.
5+
# Copyright, 2018-2025, by Samuel Williams.
66

77
gem "async"
88
gem "async-http"

examples/wikipedia/server.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# frozen_string_literal: true
33

44
# Released under the MIT License.
5-
# Copyright, 2024, by Samuel Williams.
5+
# Copyright, 2024-2025, by Samuel Williams.
66

77
require "cgi"
88
require "json"

lib/async/dns.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Released under the MIT License.
44
# Copyright, 2012, by Tony Arcieri.
5-
# Copyright, 2015-2024, by Samuel Williams.
5+
# Copyright, 2015-2025, by Samuel Williams.
66

77
require "async"
88
require_relative "dns/version"

lib/async/dns/extensions/resolv.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2015-2024, by Samuel Williams.
4+
# Copyright, 2015-2025, by Samuel Williams.
55

66
require "resolv"
77

lib/async/dns/extensions/string.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2015-2024, by Samuel Williams.
4+
# Copyright, 2015-2025, by Samuel Williams.
55

66
require_relative "../chunked"
77

0 commit comments

Comments
 (0)