Skip to content

Commit 017f8a6

Browse files
committed
ci: Add ruby-3.3 to the matrix
1 parent aaafb69 commit 017f8a6

File tree

4 files changed

+7
-28
lines changed

4 files changed

+7
-28
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
ruby: [ ruby-3.0, ruby-3.1, ruby-3.2 ]
19+
ruby: [ ruby-3.0, ruby-3.1, ruby-3.2, ruby-3.3 ]
2020
os: [ ubuntu-latest ]
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424

2525
- uses: ruby/setup-ruby@v1
2626
with:
@@ -30,14 +30,6 @@ jobs:
3030
- name: bundle exec rspec
3131
run: bundle exec rspec --format progress --force-colour
3232

33-
- name: Prepare Coveralls test coverage report
34-
uses: coverallsapp/[email protected]
35-
with:
36-
github-token: ${{ secrets.GITHUB_TOKEN }}
37-
flag-name: "${{ matrix.ruby }} @${{ matrix.os }}"
38-
path-to-lcov: ./coverage/lcov/lcov.info
39-
parallel: true
40-
4133
test-flaky:
4234
runs-on: ${{ matrix.os }}
4335

@@ -47,7 +39,7 @@ jobs:
4739
os: [ ubuntu-latest ]
4840

4941
steps:
50-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
5143

5244
- uses: ruby/setup-ruby@v1
5345
with:
@@ -58,21 +50,11 @@ jobs:
5850
continue-on-error: true
5951
run: bundle exec rspec --format progress --force-colour
6052

61-
coveralls:
62-
needs: test
63-
runs-on: ubuntu-latest
64-
steps:
65-
- name: Finalize Coveralls test coverage report
66-
uses: coverallsapp/github-action@master
67-
with:
68-
github-token: ${{ secrets.GITHUB_TOKEN }}
69-
parallel-finished: true
70-
7153
lint:
7254
runs-on: ubuntu-latest
7355

7456
steps:
75-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
7658

7759
- uses: ruby/setup-ruby@v1
7860
with:

CHANGELOG.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
### Changed
11-
12-
- **BREAKING** Process features in reverse order (#766)
13-
1410
### Removed
1511

1612
- **BREAKING** Drop Ruby 2.x support
1713

18-
[unreleased]: https://github.com/httprb/http/compare/v5.1.1...HEAD
14+
[unreleased]: https://github.com/httprb/http/compare/v5.2.0...main

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ the following Ruby versions:
112112
- Ruby 3.0
113113
- Ruby 3.1
114114
- Ruby 3.2
115+
- Ruby 3.3
115116
- JRuby 9.4
116117

117118
If something doesn't work on one of these versions, it's a bug.

lib/http/version.rb

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

33
module HTTP
4-
VERSION = "5.1.1"
4+
VERSION = "5.2.0"
55
end

0 commit comments

Comments
 (0)