From 80e87e4ae0237acea3acf77815ec39e1cdfeb9f6 Mon Sep 17 00:00:00 2001 From: Pion <59523206+pionbot@users.noreply.github.com> Date: Thu, 22 Jan 2026 08:45:26 +0000 Subject: [PATCH] Update CI configs to v0.11.37 Update lint scripts and CI configs. --- .github/.gitignore | 2 +- .github/fetch-scripts.sh | 2 +- .github/install-hooks.sh | 2 +- .github/workflows/api.yaml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/fuzz.yaml | 2 +- .github/workflows/lint.yaml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/renovate-go-sum-fix.yaml | 2 +- .github/workflows/reuse.yml | 2 +- .github/workflows/test.yaml | 2 +- .github/workflows/tidy-check.yaml | 2 +- .gitignore | 2 +- .golangci.yml | 2 +- .goreleaser.yml | 2 +- .reuse/dep5 | 4 ++-- LICENSE | 2 +- codecov.yml | 2 +- context.go | 2 +- context_test.go | 2 +- crypto.go | 2 +- crypto_test.go | 2 +- errors.go | 2 +- examples/encrypt-decrypt/main.go | 2 +- key_derivation.go | 2 +- key_derivation_test.go | 2 +- keying.go | 2 +- keying_test.go | 2 +- option.go | 2 +- protection_profile.go | 2 +- protection_profile_test.go | 2 +- protection_profile_with_args.go | 2 +- session.go | 2 +- session_srtcp.go | 2 +- session_srtcp_test.go | 2 +- session_srtp.go | 2 +- session_srtp_test.go | 2 +- srtcp.go | 2 +- srtcp_test.go | 2 +- srtp.go | 2 +- srtp_cipher.go | 2 +- srtp_cipher_aead_aes_gcm.go | 2 +- srtp_cipher_aead_aes_gcm_rfc_test.go | 2 +- srtp_cipher_aes_cm_hmac_sha1.go | 2 +- srtp_cipher_aes_cm_hmac_sha1_rfc_test.go | 2 +- srtp_cipher_rcc_test.go | 2 +- srtp_cipher_test.go | 2 +- srtp_cipher_utils_test.go | 2 +- srtp_cryptex.go | 2 +- srtp_cryptex_test.go | 2 +- srtp_test.go | 2 +- stream.go | 2 +- stream_srtcp.go | 2 +- stream_srtp.go | 2 +- stream_srtp_test.go | 2 +- util.go | 2 +- 56 files changed, 57 insertions(+), 57 deletions(-) diff --git a/.github/.gitignore b/.github/.gitignore index c3421a1..c4e1169 100644 --- a/.github/.gitignore +++ b/.github/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT .goassets diff --git a/.github/fetch-scripts.sh b/.github/fetch-scripts.sh index f333841..16b1338 100755 --- a/.github/fetch-scripts.sh +++ b/.github/fetch-scripts.sh @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT set -eu diff --git a/.github/install-hooks.sh b/.github/install-hooks.sh index 2bad37c..6e67313 100755 --- a/.github/install-hooks.sh +++ b/.github/install-hooks.sh @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT SCRIPT_PATH="$(realpath "$(dirname "$0")")" diff --git a/.github/workflows/api.yaml b/.github/workflows/api.yaml index 1032179..d4052c6 100644 --- a/.github/workflows/api.yaml +++ b/.github/workflows/api.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: API diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ea9b825..f825e2e 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: CodeQL diff --git a/.github/workflows/fuzz.yaml b/.github/workflows/fuzz.yaml index 2f888ad..cd43c19 100644 --- a/.github/workflows/fuzz.yaml +++ b/.github/workflows/fuzz.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Fuzz diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 5dd3a99..0966ef1 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3b94deb..fe0d389 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Release diff --git a/.github/workflows/renovate-go-sum-fix.yaml b/.github/workflows/renovate-go-sum-fix.yaml index b7bb1b4..28cf9e2 100644 --- a/.github/workflows/renovate-go-sum-fix.yaml +++ b/.github/workflows/renovate-go-sum-fix.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Fix go.sum diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index 8633a12..3dfd683 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: REUSE Compliance Check diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ab6ebae..6e34f4f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Test diff --git a/.github/workflows/tidy-check.yaml b/.github/workflows/tidy-check.yaml index 7ed07ba..f2c3538 100644 --- a/.github/workflows/tidy-check.yaml +++ b/.github/workflows/tidy-check.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Go mod tidy diff --git a/.gitignore b/.gitignore index 6e2f206..2394557 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT ### JetBrains IDE ### diff --git a/.golangci.yml b/.golangci.yml index 4b4025f..43af4c3 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT version: "2" diff --git a/.goreleaser.yml b/.goreleaser.yml index 30093e9..8577d86 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT builds: diff --git a/.reuse/dep5 b/.reuse/dep5 index b26c56d..ebb85e4 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -3,9 +3,9 @@ Upstream-Name: Pion Source: https://github.com/pion/ Files: README.md DESIGN.md **/README.md AUTHORS.txt renovate.json go.mod go.sum **/go.mod **/go.sum .eslintrc.json package.json examples.json sfu-ws/flutter/.gitignore sfu-ws/flutter/pubspec.yaml c-data-channels/webrtc.h examples/examples.json yarn.lock -Copyright: 2023 The Pion community +Copyright: 2026 The Pion community License: MIT Files: testdata/seed/* testdata/fuzz/* **/testdata/fuzz/* api/*.txt -Copyright: 2023 The Pion community +Copyright: 2026 The Pion community License: CC0-1.0 diff --git a/LICENSE b/LICENSE index 491caf6..d96df05 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 The Pion community +Copyright (c) 2026 The Pion community Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/codecov.yml b/codecov.yml index 263e4d4..b9639c2 100644 --- a/codecov.yml +++ b/codecov.yml @@ -3,7 +3,7 @@ # # It is automatically copied from https://github.com/pion/.goassets repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT coverage: diff --git a/context.go b/context.go index 957f329..ca6dd87 100644 --- a/context.go +++ b/context.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/context_test.go b/context_test.go index 7cf2d1f..60af35e 100644 --- a/context_test.go +++ b/context_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/crypto.go b/crypto.go index 323dcb4..68512e4 100644 --- a/crypto.go +++ b/crypto.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/crypto_test.go b/crypto_test.go index e3d6d23..403f137 100644 --- a/crypto_test.go +++ b/crypto_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/errors.go b/errors.go index 36b7416..63f123b 100644 --- a/errors.go +++ b/errors.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/examples/encrypt-decrypt/main.go b/examples/encrypt-decrypt/main.go index d3970a0..70a47fe 100644 --- a/examples/encrypt-decrypt/main.go +++ b/examples/encrypt-decrypt/main.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package main diff --git a/key_derivation.go b/key_derivation.go index 945b569..b709c5c 100644 --- a/key_derivation.go +++ b/key_derivation.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/key_derivation_test.go b/key_derivation_test.go index c82d977..9befc57 100644 --- a/key_derivation_test.go +++ b/key_derivation_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/keying.go b/keying.go index c9dc183..60ccbed 100644 --- a/keying.go +++ b/keying.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/keying_test.go b/keying_test.go index 4bb994a..ece17f9 100644 --- a/keying_test.go +++ b/keying_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/option.go b/option.go index 1736a33..e5a693b 100644 --- a/option.go +++ b/option.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/protection_profile.go b/protection_profile.go index 181da22..7cfb1bc 100644 --- a/protection_profile.go +++ b/protection_profile.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/protection_profile_test.go b/protection_profile_test.go index 077e343..2ac2bb6 100644 --- a/protection_profile_test.go +++ b/protection_profile_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/protection_profile_with_args.go b/protection_profile_with_args.go index a0e08be..0873f01 100644 --- a/protection_profile_with_args.go +++ b/protection_profile_with_args.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/session.go b/session.go index ad7eba8..74c6ca0 100644 --- a/session.go +++ b/session.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/session_srtcp.go b/session_srtcp.go index 753576f..e56ed7f 100644 --- a/session_srtcp.go +++ b/session_srtcp.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/session_srtcp_test.go b/session_srtcp_test.go index 4a6162b..80199fc 100644 --- a/session_srtcp_test.go +++ b/session_srtcp_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/session_srtp.go b/session_srtp.go index 73ff253..545af65 100644 --- a/session_srtp.go +++ b/session_srtp.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/session_srtp_test.go b/session_srtp_test.go index 67a80ed..dbca950 100644 --- a/session_srtp_test.go +++ b/session_srtp_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtcp.go b/srtcp.go index 6f70508..5874f0d 100644 --- a/srtcp.go +++ b/srtcp.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtcp_test.go b/srtcp_test.go index 0610258..2d2de90 100644 --- a/srtcp_test.go +++ b/srtcp_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp.go b/srtp.go index 044f72d..9c611ab 100644 --- a/srtp.go +++ b/srtp.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package srtp implements Secure Real-time Transport Protocol diff --git a/srtp_cipher.go b/srtp_cipher.go index 3464e3e..32d663c 100644 --- a/srtp_cipher.go +++ b/srtp_cipher.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cipher_aead_aes_gcm.go b/srtp_cipher_aead_aes_gcm.go index 7659296..b41dc68 100644 --- a/srtp_cipher_aead_aes_gcm.go +++ b/srtp_cipher_aead_aes_gcm.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cipher_aead_aes_gcm_rfc_test.go b/srtp_cipher_aead_aes_gcm_rfc_test.go index 466329b..3c5e69a 100644 --- a/srtp_cipher_aead_aes_gcm_rfc_test.go +++ b/srtp_cipher_aead_aes_gcm_rfc_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cipher_aes_cm_hmac_sha1.go b/srtp_cipher_aes_cm_hmac_sha1.go index 206a790..94a936e 100644 --- a/srtp_cipher_aes_cm_hmac_sha1.go +++ b/srtp_cipher_aes_cm_hmac_sha1.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cipher_aes_cm_hmac_sha1_rfc_test.go b/srtp_cipher_aes_cm_hmac_sha1_rfc_test.go index 80c8d77..a78a4ab 100644 --- a/srtp_cipher_aes_cm_hmac_sha1_rfc_test.go +++ b/srtp_cipher_aes_cm_hmac_sha1_rfc_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cipher_rcc_test.go b/srtp_cipher_rcc_test.go index 82bbd68..07e86f4 100644 --- a/srtp_cipher_rcc_test.go +++ b/srtp_cipher_rcc_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cipher_test.go b/srtp_cipher_test.go index c027ffe..ca0e095 100644 --- a/srtp_cipher_test.go +++ b/srtp_cipher_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cipher_utils_test.go b/srtp_cipher_utils_test.go index 9b79f47..8fb274e 100644 --- a/srtp_cipher_utils_test.go +++ b/srtp_cipher_utils_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cryptex.go b/srtp_cryptex.go index acc150c..1fcd271 100644 --- a/srtp_cryptex.go +++ b/srtp_cryptex.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_cryptex_test.go b/srtp_cryptex_test.go index 73193cf..8bdd7c3 100644 --- a/srtp_cryptex_test.go +++ b/srtp_cryptex_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/srtp_test.go b/srtp_test.go index a8163fa..c813d98 100644 --- a/srtp_test.go +++ b/srtp_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/stream.go b/stream.go index 5f9c58a..1e7cce0 100644 --- a/stream.go +++ b/stream.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/stream_srtcp.go b/stream_srtcp.go index 87f4d98..0d66178 100644 --- a/stream_srtcp.go +++ b/stream_srtcp.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/stream_srtp.go b/stream_srtp.go index dd54984..1cfa8ee 100644 --- a/stream_srtp.go +++ b/stream_srtp.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/stream_srtp_test.go b/stream_srtp_test.go index 66999d9..caf51b3 100644 --- a/stream_srtp_test.go +++ b/stream_srtp_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp diff --git a/util.go b/util.go index 8411601..8026060 100644 --- a/util.go +++ b/util.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package srtp