Skip to content

Commit 246c4ad

Browse files
committed
Drop support for Ruby v3.2.
1 parent 38238d3 commit 246c4ad

7 files changed

Lines changed: 4 additions & 12 deletions

File tree

.github/workflows/test-coverage.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ jobs:
1616
strategy:
1717
matrix:
1818
include:
19-
- os: ubuntu
20-
ruby: "3.2"
21-
io_event_selector: EPoll
2219
- os: ubuntu
2320
ruby: "3.3"
2421
io_event_selector: EPoll

.github/workflows/test-external.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- macos
1818

1919
ruby:
20-
- "3.2"
2120
- "3.3"
2221
- "3.4"
2322
- "4.0"

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
- macos
1919

2020
ruby:
21-
- "3.2"
2221
- "3.3"
2322
- "3.4"
2423
- "4.0"

async.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
2323

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

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

2828
spec.add_dependency "console", "~> 1.29"
2929
spec.add_dependency "fiber-annotation"

fixtures/async/a_queue_with_timeout.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, 2025, by Shopify Inc.
5-
# Copyright, 2025, by Samuel Williams.
5+
# Copyright, 2025-2026, by Samuel Williams.
66

77
require "sus/fixtures/async"
88

lib/async.rb

Lines changed: 1 addition & 5 deletions
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, 2017-2025, by Samuel Williams.
4+
# Copyright, 2017-2026, by Samuel Williams.
55
# Copyright, 2020, by Salim Semaoune.
66

77
require_relative "async/version"
@@ -11,7 +11,3 @@
1111
require_relative "kernel/async"
1212
require_relative "kernel/sync"
1313
require_relative "kernel/barrier"
14-
15-
# Asynchronous programming framework.
16-
module Async
17-
end

lib/async/version.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Released under the MIT License.
44
# Copyright, 2017-2026, by Samuel Williams.
55

6+
# @namespace
67
module Async
78
VERSION = "2.37.0"
89
end

0 commit comments

Comments
 (0)