diff --git a/.mailmap b/.mailmap index 50b4e97..c42653c 100644 --- a/.mailmap +++ b/.mailmap @@ -1,3 +1,4 @@ Viacheslav Koval Sam Shadwell Thomas Morgan +Hal Brodigan diff --git a/async-http.gemspec b/async-http.gemspec index 9609c61..f34cd30 100644 --- a/async-http.gemspec +++ b/async-http.gemspec @@ -7,7 +7,7 @@ Gem::Specification.new do |spec| spec.version = Async::HTTP::VERSION spec.summary = "A HTTP client and server library." - spec.authors = ["Samuel Williams", "Brian Morearty", "Bruno Sutic", "Janko Marohnić", "Thomas Morgan", "Adam Daniels", "Anton Zhuravsky", "Cyril Roelandt", "Denis Talakevich", "Ian Ker-Seymer", "Igor Sidorov", "Josh Huber", "Marco Concetto Rudilosso", "Olle Jonsson", "Orgad Shaneh", "Sam Shadwell", "Stefan Wrobel", "Tim Meusel", "Trevor Turk", "Viacheslav Koval", "dependabot[bot]"] + spec.authors = ["Samuel Williams", "Brian Morearty", "Bruno Sutic", "Janko Marohnić", "Thomas Morgan", "Adam Daniels", "Igor Sidorov", "Anton Zhuravsky", "Cyril Roelandt", "Denis Talakevich", "Hal Brodigan", "Ian Ker-Seymer", "Josh Huber", "Marco Concetto Rudilosso", "Olle Jonsson", "Orgad Shaneh", "Sam Shadwell", "Stefan Wrobel", "Tim Meusel", "Trevor Turk", "Viacheslav Koval", "dependabot[bot]"] spec.license = "MIT" spec.cert_chain = ['release.cert'] diff --git a/lib/async/http/endpoint.rb b/lib/async/http/endpoint.rb index da8618b..dd80f9c 100644 --- a/lib/async/http/endpoint.rb +++ b/lib/async/http/endpoint.rb @@ -4,6 +4,8 @@ # Copyright, 2019-2024, by Samuel Williams. # Copyright, 2021-2022, by Adam Daniels. # Copyright, 2024, by Thomas Morgan. +# Copyright, 2024, by Igor Sidorov. +# Copyright, 2024, by Hal Brodigan. require 'io/endpoint' require 'io/endpoint/host_endpoint' diff --git a/lib/async/http/internet.rb b/lib/async/http/internet.rb index a488f3f..37fd379 100644 --- a/lib/async/http/internet.rb +++ b/lib/async/http/internet.rb @@ -1,7 +1,8 @@ # frozen_string_literal: true # Released under the MIT License. -# Copyright, 2018-2023, by Samuel Williams. +# Copyright, 2018-2024, by Samuel Williams. +# Copyright, 2024, by Igor Sidorov. require_relative 'client' require_relative 'endpoint' diff --git a/lib/async/http/protocol/http.rb b/lib/async/http/protocol/http.rb index eb7d58b..6b57c08 100644 --- a/lib/async/http/protocol/http.rb +++ b/lib/async/http/protocol/http.rb @@ -2,6 +2,7 @@ # Released under the MIT License. # Copyright, 2024, by Thomas Morgan. +# Copyright, 2024, by Samuel Williams. require_relative 'http1' require_relative 'http2' diff --git a/license.md b/license.md index 598f6a1..daa72d1 100644 --- a/license.md +++ b/license.md @@ -7,7 +7,7 @@ Copyright, 2019, by Denis Talakevich. Copyright, 2019-2020, by Brian Morearty. Copyright, 2019, by Cyril Roelandt. Copyright, 2020, by Stefan Wrobel. -Copyright, 2020, by Igor Sidorov. +Copyright, 2020-2024, by Igor Sidorov. Copyright, 2020, by Bruno Sutic. Copyright, 2020, by Sam Shadwell. Copyright, 2020, by Orgad Shaneh. @@ -21,6 +21,7 @@ Copyright, 2023-2024, by Thomas Morgan. Copyright, 2023, by dependabot[bot]. Copyright, 2023, by Josh Huber. Copyright, 2024, by Anton Zhuravsky. +Copyright, 2024, by Hal Brodigan. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/test/async/http/internet.rb b/test/async/http/internet.rb index 0eaf42a..43d7aa4 100644 --- a/test/async/http/internet.rb +++ b/test/async/http/internet.rb @@ -1,7 +1,9 @@ # frozen_string_literal: true # Released under the MIT License. -# Copyright, 2018-2023, by Samuel Williams. +# Copyright, 2018-2024, by Samuel Williams. +# Copyright, 2024, by Igor Sidorov. +# Copyright, 2024, by Hal Brodigan. require 'async/http/internet' require 'async/reactor' diff --git a/test/async/http/protocol/http.rb b/test/async/http/protocol/http.rb index d787dc9..90a2b5a 100755 --- a/test/async/http/protocol/http.rb +++ b/test/async/http/protocol/http.rb @@ -2,6 +2,7 @@ # Released under the MIT License. # Copyright, 2024, by Thomas Morgan. +# Copyright, 2024, by Samuel Williams. require 'async/http/protocol/http' require 'async/http/a_protocol'