From d5e7a552c6cf85a29c1d46922aa79160cb2c9f7a Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Sat, 6 Apr 2024 00:15:58 +1300 Subject: [PATCH] Update copyrights. --- lib/protocol/http1/connection.rb | 1 + lib/protocol/http1/version.rb | 2 +- license.md | 1 + protocol-http1.gemspec | 2 +- test/protocol/http1/hijack.rb | 1 + 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/protocol/http1/connection.rb b/lib/protocol/http1/connection.rb index 49e4cf1..1eb8e10 100644 --- a/lib/protocol/http1/connection.rb +++ b/lib/protocol/http1/connection.rb @@ -5,6 +5,7 @@ # Copyright, 2019, by Brian Morearty. # Copyright, 2020, by Bruno Sutic. # Copyright, 2023, by Thomas Morgan. +# Copyright, 2024, by Anton Zhuravsky. require 'protocol/http/headers' diff --git a/lib/protocol/http1/version.rb b/lib/protocol/http1/version.rb index 4ee71b2..8d75976 100644 --- a/lib/protocol/http1/version.rb +++ b/lib/protocol/http1/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true # Released under the MIT License. -# Copyright, 2019-2023, by Samuel Williams. +# Copyright, 2019-2024, by Samuel Williams. module Protocol module HTTP1 diff --git a/license.md b/license.md index c6aa401..f0b12fc 100644 --- a/license.md +++ b/license.md @@ -5,6 +5,7 @@ Copyright, 2019, by Brian Morearty. Copyright, 2020, by Olle Jonsson. Copyright, 2020, by Bruno Sutic. Copyright, 2023, by Thomas Morgan. +Copyright, 2024, by Anton Zhuravsky. 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/protocol-http1.gemspec b/protocol-http1.gemspec index c62aeb7..ec1a42c 100644 --- a/protocol-http1.gemspec +++ b/protocol-http1.gemspec @@ -7,7 +7,7 @@ Gem::Specification.new do |spec| spec.version = Protocol::HTTP1::VERSION spec.summary = "A low level implementation of the HTTP/1 protocol." - spec.authors = ["Samuel Williams", "Thomas Morgan", "Brian Morearty", "Bruno Sutic", "Olle Jonsson"] + spec.authors = ["Samuel Williams", "Thomas Morgan", "Anton Zhuravsky", "Brian Morearty", "Bruno Sutic", "Olle Jonsson"] spec.license = "MIT" spec.cert_chain = ['release.cert'] diff --git a/test/protocol/http1/hijack.rb b/test/protocol/http1/hijack.rb index e91595f..ec0a0c1 100644 --- a/test/protocol/http1/hijack.rb +++ b/test/protocol/http1/hijack.rb @@ -2,6 +2,7 @@ # Released under the MIT License. # Copyright, 2019-2023, by Samuel Williams. +# Copyright, 2024, by Anton Zhuravsky. require 'protocol/http1/connection' require 'connection_context'