Skip to content

Commit 35f549b

Browse files
committed
Modernize code.
1 parent 0e572b2 commit 35f549b

File tree

10 files changed

+13
-10
lines changed

10 files changed

+13
-10
lines changed

.github/workflows/documentation-coverage.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: "3.3"
20+
ruby-version: "3.4"
2121
bundler-cache: true
2222

2323
- name: Validate coverage

.github/workflows/documentation.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: ruby/setup-ruby@v1
3131
with:
32-
ruby-version: "3.3"
32+
ruby-version: "3.4"
3333
bundler-cache: true
3434

3535
- name: Installing packages

.github/workflows/test-coverage.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- macos
2222

2323
ruby:
24-
- "3.3"
24+
- "3.4"
2525

2626
steps:
2727
- uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@v4
5050
- uses: ruby/setup-ruby@v1
5151
with:
52-
ruby-version: "3.3"
52+
ruby-version: "3.4"
5353
bundler-cache: true
5454

5555
- uses: actions/download-artifact@v4

.github/workflows/test-external.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- "3.1"
2424
- "3.2"
2525
- "3.3"
26+
- "3.4"
2627

2728
steps:
2829
- uses: actions/checkout@v4

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ permissions:
77

88
env:
99
CONSOLE_OUTPUT: XTerm
10-
TRACES_BACKEND: traces/backend/test
1110

1211
jobs:
1312
test:
@@ -25,6 +24,7 @@ jobs:
2524
- "3.1"
2625
- "3.2"
2726
- "3.3"
27+
- "3.4"
2828

2929
experimental: [false]
3030

lib/protocol/http2/priority_update_frame.rb

+1-1
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, 2019-2024, by Samuel Williams.
4+
# Copyright, 2024-2025, by Samuel Williams.
55

66
require_relative "frame"
77
require_relative "padded"

lib/traces/provider/protocol/http2/framer.rb

+1-1
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 "traces/provider"
77
require_relative "../../../../protocol/http2/framer"

license.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# MIT License
22

3-
Copyright, 2019-2024, by Samuel Williams.
3+
Copyright, 2019-2025, by Samuel Williams.
44
Copyright, 2019, by Yuta Iwama.
55
Copyright, 2020, by Olle Jonsson.
66
Copyright, 2023, by Marco Concetto Rudilosso.
7+
Copyright, 2024, by Adam Petro.
78

89
Permission is hereby granted, free of charge, to any person obtaining a copy
910
of this software and associated documentation files (the "Software"), to deal

protocol-http2.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
77
spec.version = Protocol::HTTP2::VERSION
88

99
spec.summary = "A low level implementation of the HTTP/2 protocol."
10-
spec.authors = ["Samuel Williams", "Yuta Iwama", "Marco Concetto Rudilosso", "Olle Jonsson"]
10+
spec.authors = ["Samuel Williams", "Yuta Iwama", "Adam Petro", "Marco Concetto Rudilosso", "Olle Jonsson"]
1111
spec.license = "MIT"
1212

1313
spec.cert_chain = ["release.cert"]

test/protocol/http2/priority_update_frame.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# frozen_string_literal: true
2+
23
# Released under the MIT License.
3-
# Copyright, 2019-2024, by Samuel Williams.
4+
# Copyright, 2024-2025, by Samuel Williams.
45

56
require "protocol/http2/priority_update_frame"
67

0 commit comments

Comments
 (0)