diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 30dbcef78..1ce922072 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -1,6 +1,7 @@ # Copyright year update commits f8f011c7fd60926b3c65096c5e17ffe1b078a9ab a7f21b9aacc545fb38615fab6ea7853d86fc78c1 +b33d964a2b7d2c5f9135702b48be2ff1711092d1 # Formatting commits # Scala Steward: Reformat with scalafmt 3.7.11 diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 001e1fe23..3ece0c586 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -10,6 +10,20 @@ There a several ways you can contribute to `fs2-data`: If in doubt, you can always [contact us][getting-help] and ask as many questions as you want. + + +## Table of Contents + +- [Documentation](#documentation) +- [Code formatting](#code-formatting) +- [Extend an existing data format with new features](#extend-an-existing-data-format-with-new-features) +- [Add support for a new data format](#add-support-for-a-new-data-format) + - [Adding a text data format](#adding-a-text-data-format) + - [Adding a binary data format](#adding-a-binary-data-format) +- [Licensing](#licensing) + + + ## Documentation The documentation is written in markdown and lives in the `documentation/docs` directory. @@ -88,6 +102,10 @@ def tokens[F[_]](implicit F: RaiseThrowable[F]): Pipe[F, Byte, Token] for the `Token` type the parser defines. +## Licensing + +`fs2-data` is licensed under the Apache Software License 2.0. Opening a pull request is to be considered affirmative consent to incorporate your changes into the project, granting an unrestricted license to the `fs2-data` project maintainers to distribute and derive new work from your changes, as per the contribution terms of ASL 2.0. You also affirm that you own the rights to the code you are contributing. All contributors retain the copyright to their own work. + [open-issue]: https://github.com/satabin/fs2-data/issues/new/choose [open-pr]: https://github.com/satabin/fs2-data/pull/new/main [scalafmt]: https://scalameta.org/scalafmt/ diff --git a/build.sbt b/build.sbt index 84ddb5f30..47d8411ea 100644 --- a/build.sbt +++ b/build.sbt @@ -31,13 +31,11 @@ val diffsonVersion = "4.5.0" val literallyVersion = "1.1.0" val weaverVersion = "0.8.3" -val copyrightYears = "2019-2023" - ThisBuild / tlBaseVersion := "1.10" ThisBuild / organization := "org.gnieh" -ThisBuild / organizationName := "Lucas Satabin" -ThisBuild / startYear := Some(2023) +ThisBuild / organizationName := "fs2-data Project" +ThisBuild / startYear := Some(2024) ThisBuild / licenses := Seq(License.Apache2) ThisBuild / developers := List( tlGitHubDev("satabin", "Lucas Satabin"), diff --git a/cbor-json/shared/src/main/scala/fs2/data/cbor/package.scala b/cbor-json/shared/src/main/scala/fs2/data/cbor/package.scala index 6eb6b03cd..9a8b25960 100644 --- a/cbor-json/shared/src/main/scala/fs2/data/cbor/package.scala +++ b/cbor-json/shared/src/main/scala/fs2/data/cbor/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor-json/shared/src/main/scala/fs2/data/json/package.scala b/cbor-json/shared/src/main/scala/fs2/data/json/package.scala index befeaabc2..69d8c19a6 100644 --- a/cbor-json/shared/src/main/scala/fs2/data/json/package.scala +++ b/cbor-json/shared/src/main/scala/fs2/data/json/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor-json/shared/src/test/scala/fs2/data/cbor/AppendixTestCase.scala b/cbor-json/shared/src/test/scala/fs2/data/cbor/AppendixTestCase.scala index 4039f0b91..cb8270313 100644 --- a/cbor-json/shared/src/test/scala/fs2/data/cbor/AppendixTestCase.scala +++ b/cbor-json/shared/src/test/scala/fs2/data/cbor/AppendixTestCase.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor-json/shared/src/test/scala/fs2/data/cbor/CborToJsonSpec.scala b/cbor-json/shared/src/test/scala/fs2/data/cbor/CborToJsonSpec.scala index 29b8e38e4..483e2368d 100644 --- a/cbor-json/shared/src/test/scala/fs2/data/cbor/CborToJsonSpec.scala +++ b/cbor-json/shared/src/test/scala/fs2/data/cbor/CborToJsonSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor-json/shared/src/test/scala/fs2/data/cbor/JsonToCborSpec.scala b/cbor-json/shared/src/test/scala/fs2/data/cbor/JsonToCborSpec.scala index 7cc9f706b..689898dd7 100644 --- a/cbor-json/shared/src/test/scala/fs2/data/cbor/JsonToCborSpec.scala +++ b/cbor-json/shared/src/test/scala/fs2/data/cbor/JsonToCborSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/CborException.scala b/cbor/shared/src/main/scala/fs2/data/cbor/CborException.scala index fc23132fd..5a9c18074 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/CborException.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/CborException.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/Diagnostic.scala b/cbor/shared/src/main/scala/fs2/data/cbor/Diagnostic.scala index e05b3f21d..45cb862d3 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/Diagnostic.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/Diagnostic.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/HalfFloat.scala b/cbor/shared/src/main/scala/fs2/data/cbor/HalfFloat.scala index 3d18c0d84..6409497c2 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/HalfFloat.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/HalfFloat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/Tags.scala b/cbor/shared/src/main/scala/fs2/data/cbor/Tags.scala index f2368d544..1c22cbdfa 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/Tags.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/Tags.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/high/HalfFloat.scala b/cbor/shared/src/main/scala/fs2/data/cbor/high/HalfFloat.scala index ab204b8eb..3b4b23b17 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/high/HalfFloat.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/high/HalfFloat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/high/internal/ValueParser.scala b/cbor/shared/src/main/scala/fs2/data/cbor/high/internal/ValueParser.scala index c44d2dc72..e895dffe8 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/high/internal/ValueParser.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/high/internal/ValueParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/high/internal/ValueSerializer.scala b/cbor/shared/src/main/scala/fs2/data/cbor/high/internal/ValueSerializer.scala index e8f5ebbed..347640b57 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/high/internal/ValueSerializer.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/high/internal/ValueSerializer.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/high/model.scala b/cbor/shared/src/main/scala/fs2/data/cbor/high/model.scala index e4433d472..3f098bfca 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/high/model.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/high/model.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/high/package.scala b/cbor/shared/src/main/scala/fs2/data/cbor/high/package.scala index c27b56720..31e64b7d0 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/high/package.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/high/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/ItemParser.scala b/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/ItemParser.scala index ab446f0b4..703d19612 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/ItemParser.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/ItemParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/ItemValidator.scala b/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/ItemValidator.scala index b3e8efee7..d8a1f5471 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/ItemValidator.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/ItemValidator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/MajorType.scala b/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/MajorType.scala index 6c437dc48..91eeea847 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/MajorType.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/low/internal/MajorType.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/low/model.scala b/cbor/shared/src/main/scala/fs2/data/cbor/low/model.scala index 04e191827..8fefe83e7 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/low/model.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/low/model.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/low/package.scala b/cbor/shared/src/main/scala/fs2/data/cbor/low/package.scala index a30d46373..730e6f060 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/low/package.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/low/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/main/scala/fs2/data/cbor/package.scala b/cbor/shared/src/main/scala/fs2/data/cbor/package.scala index 8f7237ce5..7dd2eb5cc 100644 --- a/cbor/shared/src/main/scala/fs2/data/cbor/package.scala +++ b/cbor/shared/src/main/scala/fs2/data/cbor/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/test/scala/fs2/data/cbor/AppendixTestCase.scala b/cbor/shared/src/test/scala/fs2/data/cbor/AppendixTestCase.scala index af2beeb4d..9da8e774e 100644 --- a/cbor/shared/src/test/scala/fs2/data/cbor/AppendixTestCase.scala +++ b/cbor/shared/src/test/scala/fs2/data/cbor/AppendixTestCase.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/test/scala/fs2/data/cbor/ParserSpec.scala b/cbor/shared/src/test/scala/fs2/data/cbor/ParserSpec.scala index ae8c7e706..dc9130b62 100644 --- a/cbor/shared/src/test/scala/fs2/data/cbor/ParserSpec.scala +++ b/cbor/shared/src/test/scala/fs2/data/cbor/ParserSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/test/scala/fs2/data/cbor/RoundtripTest.scala b/cbor/shared/src/test/scala/fs2/data/cbor/RoundtripTest.scala index 855e640d2..025f2a8ce 100644 --- a/cbor/shared/src/test/scala/fs2/data/cbor/RoundtripTest.scala +++ b/cbor/shared/src/test/scala/fs2/data/cbor/RoundtripTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/test/scala/fs2/data/cbor/ValidationSpec.scala b/cbor/shared/src/test/scala/fs2/data/cbor/ValidationSpec.scala index 58065ae09..9de9c56ab 100644 --- a/cbor/shared/src/test/scala/fs2/data/cbor/ValidationSpec.scala +++ b/cbor/shared/src/test/scala/fs2/data/cbor/ValidationSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cbor/shared/src/test/scala/fs2/data/cbor/high/ValueParserTest.scala b/cbor/shared/src/test/scala/fs2/data/cbor/high/ValueParserTest.scala index 0f763bd2b..99e85efbf 100644 --- a/cbor/shared/src/test/scala/fs2/data/cbor/high/ValueParserTest.scala +++ b/cbor/shared/src/test/scala/fs2/data/cbor/high/ValueParserTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/auto.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/auto.scala index 5fbc09d93..a0392a920 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/auto.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/auto.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/hlist.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/hlist.scala index da751ea41..ef06adbe3 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/hlist.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/hlist.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCellDecoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCellDecoder.scala index 9c8956842..e7ec02684 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCellDecoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCellDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCellEncoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCellEncoder.scala index e79e0285f..2a97edf7f 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCellEncoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCellEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCsvRowDecoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCsvRowDecoder.scala index b73cf5632..1182fae88 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCsvRowDecoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCsvRowDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCsvRowEncoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCsvRowEncoder.scala index c3629c9d3..240330076 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCsvRowEncoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedCsvRowEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedRowDecoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedRowDecoder.scala index 837dc89c0..a967c15bb 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedRowDecoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedRowDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedRowEncoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedRowEncoder.scala index c188e4df5..2140d7ad0 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedRowEncoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/DerivedRowEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/ExportMacros.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/ExportMacros.scala index 4f41c1582..b27b5e7c7 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/ExportMacros.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/ExportMacros.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/MapShapedCsvRowDecoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/MapShapedCsvRowDecoder.scala index 7cca2ec46..dec51d5db 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/MapShapedCsvRowDecoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/MapShapedCsvRowDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/MapShapedCsvRowEncoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/MapShapedCsvRowEncoder.scala index 059350552..2fb9ab27f 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/MapShapedCsvRowEncoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/MapShapedCsvRowEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/SeqShapedRowDecoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/SeqShapedRowDecoder.scala index 733791f71..d8c0526d7 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/SeqShapedRowDecoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/SeqShapedRowDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/SeqShapedRowEncoder.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/SeqShapedRowEncoder.scala index 5dcb57d0f..ae47d0d52 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/SeqShapedRowEncoder.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/internal/SeqShapedRowEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/semiauto.scala b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/semiauto.scala index 2864614f8..5c9117091 100644 --- a/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/semiauto.scala +++ b/csv/generic/shared/src/main/scala-2/fs2/data/csv/generic/semiauto.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/CellValue.scala b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/CellValue.scala index 11b00ceda..f2485a45a 100644 --- a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/CellValue.scala +++ b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/CellValue.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/DerivedCellDecoder.scala b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/DerivedCellDecoder.scala index 2d4350ce8..038e5de26 100644 --- a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/DerivedCellDecoder.scala +++ b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/DerivedCellDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/DerivedCellEncoder.scala b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/DerivedCellEncoder.scala index 1683a8526..5ee4dfa08 100644 --- a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/DerivedCellEncoder.scala +++ b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/DerivedCellEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/Names.scala b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/Names.scala index ba7f753ba..0a436eb74 100644 --- a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/Names.scala +++ b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/Names.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/OptCellDecoder.scala b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/OptCellDecoder.scala index c37add8b3..be8af1983 100644 --- a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/OptCellDecoder.scala +++ b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/internal/OptCellDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/semiauto.scala b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/semiauto.scala index 83afe4722..e13c83ddf 100644 --- a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/semiauto.scala +++ b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/semiauto.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/tuples.scala b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/tuples.scala index 07df7259f..ccdf43e79 100644 --- a/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/tuples.scala +++ b/csv/generic/shared/src/main/scala-3/fs2/data/csv/generic/tuples.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala/fs2/data/csv/generic/CsvName.scala b/csv/generic/shared/src/main/scala/fs2/data/csv/generic/CsvName.scala index 1ce0a1c6f..e20109c29 100644 --- a/csv/generic/shared/src/main/scala/fs2/data/csv/generic/CsvName.scala +++ b/csv/generic/shared/src/main/scala/fs2/data/csv/generic/CsvName.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/main/scala/fs2/data/csv/generic/CsvValue.scala b/csv/generic/shared/src/main/scala/fs2/data/csv/generic/CsvValue.scala index 12471a197..7f580a6ad 100644 --- a/csv/generic/shared/src/main/scala/fs2/data/csv/generic/CsvValue.scala +++ b/csv/generic/shared/src/main/scala/fs2/data/csv/generic/CsvValue.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/AutoDerivationTest.scala b/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/AutoDerivationTest.scala index 879fe98a0..e44564935 100644 --- a/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/AutoDerivationTest.scala +++ b/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/AutoDerivationTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/HListDecoderDerivationTest.scala b/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/HListDecoderDerivationTest.scala index 1959cc7b3..eb79aec6c 100644 --- a/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/HListDecoderDerivationTest.scala +++ b/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/HListDecoderDerivationTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/HListEncoderDerivationTest.scala b/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/HListEncoderDerivationTest.scala index efef2c7ec..65c00991f 100644 --- a/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/HListEncoderDerivationTest.scala +++ b/csv/generic/shared/src/test/scala-2/fs2/data/csv/generic/HListEncoderDerivationTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala-3/fs2/data/csv/generic/TupleDerivationTest.scala b/csv/generic/shared/src/test/scala-3/fs2/data/csv/generic/TupleDerivationTest.scala index 093a885dc..44776c1e6 100644 --- a/csv/generic/shared/src/test/scala-3/fs2/data/csv/generic/TupleDerivationTest.scala +++ b/csv/generic/shared/src/test/scala-3/fs2/data/csv/generic/TupleDerivationTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CellDecoderTest.scala b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CellDecoderTest.scala index 178b06813..5ce2f1227 100644 --- a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CellDecoderTest.scala +++ b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CellDecoderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CellEncoderTest.scala b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CellEncoderTest.scala index 518a6b48a..e6320f532 100644 --- a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CellEncoderTest.scala +++ b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CellEncoderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CsvRowDecoderTest.scala b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CsvRowDecoderTest.scala index ea2f51b2a..c20379060 100644 --- a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CsvRowDecoderTest.scala +++ b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CsvRowDecoderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CsvRowEncoderTest.scala b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CsvRowEncoderTest.scala index 568c4960c..7161d3a16 100644 --- a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CsvRowEncoderTest.scala +++ b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/CsvRowEncoderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/RowDecoderTest.scala b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/RowDecoderTest.scala index e85c3210e..e2b85c65b 100644 --- a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/RowDecoderTest.scala +++ b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/RowDecoderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/RowEncoderTest.scala b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/RowEncoderTest.scala index a53c8940f..cb46d7f5a 100644 --- a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/RowEncoderTest.scala +++ b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/RowEncoderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/models.scala b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/models.scala index ee3972654..de51bba90 100644 --- a/csv/generic/shared/src/test/scala/fs2/data/csv/generic/models.scala +++ b/csv/generic/shared/src/test/scala/fs2/data/csv/generic/models.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/js-native/src/main/scala/fs2/data/csv/PlatformCellDecoders.scala b/csv/js-native/src/main/scala/fs2/data/csv/PlatformCellDecoders.scala index a2c42c894..6c2965949 100644 --- a/csv/js-native/src/main/scala/fs2/data/csv/PlatformCellDecoders.scala +++ b/csv/js-native/src/main/scala/fs2/data/csv/PlatformCellDecoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/js-native/src/main/scala/fs2/data/csv/PlatformCellEncoders.scala b/csv/js-native/src/main/scala/fs2/data/csv/PlatformCellEncoders.scala index 909a6d4ca..af4a79beb 100644 --- a/csv/js-native/src/main/scala/fs2/data/csv/PlatformCellEncoders.scala +++ b/csv/js-native/src/main/scala/fs2/data/csv/PlatformCellEncoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/jvm/src/main/scala/fs2/data/csv/PlatformCellDecoders.scala b/csv/jvm/src/main/scala/fs2/data/csv/PlatformCellDecoders.scala index 4a1add403..d744938d8 100644 --- a/csv/jvm/src/main/scala/fs2/data/csv/PlatformCellDecoders.scala +++ b/csv/jvm/src/main/scala/fs2/data/csv/PlatformCellDecoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/jvm/src/main/scala/fs2/data/csv/PlatformCellEncoders.scala b/csv/jvm/src/main/scala/fs2/data/csv/PlatformCellEncoders.scala index aebd4ec1f..dc9f07590 100644 --- a/csv/jvm/src/main/scala/fs2/data/csv/PlatformCellEncoders.scala +++ b/csv/jvm/src/main/scala/fs2/data/csv/PlatformCellEncoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala-2.12-/fs2/data/csv/LiteralCellDecoders.scala b/csv/shared/src/main/scala-2.12-/fs2/data/csv/LiteralCellDecoders.scala index 442583540..30a6d3c9f 100644 --- a/csv/shared/src/main/scala-2.12-/fs2/data/csv/LiteralCellDecoders.scala +++ b/csv/shared/src/main/scala-2.12-/fs2/data/csv/LiteralCellDecoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala-2.12-/fs2/data/csv/LiteralCellEncoders.scala b/csv/shared/src/main/scala-2.12-/fs2/data/csv/LiteralCellEncoders.scala index 59deb3ede..e9399c856 100644 --- a/csv/shared/src/main/scala-2.12-/fs2/data/csv/LiteralCellEncoders.scala +++ b/csv/shared/src/main/scala-2.12-/fs2/data/csv/LiteralCellEncoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala-2.13+/fs2/data/csv/LiteralCellDecoders.scala b/csv/shared/src/main/scala-2.13+/fs2/data/csv/LiteralCellDecoders.scala index 3e4bdaa2d..86db5864a 100644 --- a/csv/shared/src/main/scala-2.13+/fs2/data/csv/LiteralCellDecoders.scala +++ b/csv/shared/src/main/scala-2.13+/fs2/data/csv/LiteralCellDecoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala-2.13+/fs2/data/csv/LiteralCellEncoders.scala b/csv/shared/src/main/scala-2.13+/fs2/data/csv/LiteralCellEncoders.scala index 6f5e8ba47..f319635b6 100644 --- a/csv/shared/src/main/scala-2.13+/fs2/data/csv/LiteralCellEncoders.scala +++ b/csv/shared/src/main/scala-2.13+/fs2/data/csv/LiteralCellEncoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala-2/fs2/data/csv/EnumDecoders.scala b/csv/shared/src/main/scala-2/fs2/data/csv/EnumDecoders.scala index 00e888a22..90904e787 100644 --- a/csv/shared/src/main/scala-2/fs2/data/csv/EnumDecoders.scala +++ b/csv/shared/src/main/scala-2/fs2/data/csv/EnumDecoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala-2/fs2/data/csv/EnumEncoders.scala b/csv/shared/src/main/scala-2/fs2/data/csv/EnumEncoders.scala index 142fc6465..1e7f1ea33 100644 --- a/csv/shared/src/main/scala-2/fs2/data/csv/EnumEncoders.scala +++ b/csv/shared/src/main/scala-2/fs2/data/csv/EnumEncoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala-3/fs2/data/csv/EnumDecoders.scala b/csv/shared/src/main/scala-3/fs2/data/csv/EnumDecoders.scala index b5fafa890..382faef2d 100644 --- a/csv/shared/src/main/scala-3/fs2/data/csv/EnumDecoders.scala +++ b/csv/shared/src/main/scala-3/fs2/data/csv/EnumDecoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala-3/fs2/data/csv/EnumEncoders.scala b/csv/shared/src/main/scala-3/fs2/data/csv/EnumEncoders.scala index e8d0f880d..f1bc7500a 100644 --- a/csv/shared/src/main/scala-3/fs2/data/csv/EnumEncoders.scala +++ b/csv/shared/src/main/scala-3/fs2/data/csv/EnumEncoders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/CellDecoder.scala b/csv/shared/src/main/scala/fs2/data/csv/CellDecoder.scala index be967635f..27cf5a7c7 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/CellDecoder.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/CellDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/CellEncoder.scala b/csv/shared/src/main/scala/fs2/data/csv/CellEncoder.scala index ddefa6d1e..79b49b091 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/CellEncoder.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/CellEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/CsvRow.scala b/csv/shared/src/main/scala/fs2/data/csv/CsvRow.scala index 8907b4cfd..75180e6b2 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/CsvRow.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/CsvRow.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/CsvRowDecoder.scala b/csv/shared/src/main/scala/fs2/data/csv/CsvRowDecoder.scala index 51cf7acac..964a206c7 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/CsvRowDecoder.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/CsvRowDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/CsvRowEncoder.scala b/csv/shared/src/main/scala/fs2/data/csv/CsvRowEncoder.scala index 88598fd77..a183546e6 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/CsvRowEncoder.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/CsvRowEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/EscapeMode.scala b/csv/shared/src/main/scala/fs2/data/csv/EscapeMode.scala index ea32c60be..533a81dd2 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/EscapeMode.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/EscapeMode.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/Exported.scala b/csv/shared/src/main/scala/fs2/data/csv/Exported.scala index f530d2992..d29f5b844 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/Exported.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/Exported.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/HasHeaders.scala b/csv/shared/src/main/scala/fs2/data/csv/HasHeaders.scala index b73ded58a..898db7b9e 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/HasHeaders.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/HasHeaders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/ParseableHeader.scala b/csv/shared/src/main/scala/fs2/data/csv/ParseableHeader.scala index b11fc9431..e1306fc16 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/ParseableHeader.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/ParseableHeader.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/Row.scala b/csv/shared/src/main/scala/fs2/data/csv/Row.scala index 0503bc07b..453b156cc 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/Row.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/Row.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/RowDecoder.scala b/csv/shared/src/main/scala/fs2/data/csv/RowDecoder.scala index b65c763c4..d6956bc05 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/RowDecoder.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/RowDecoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/RowDecoderF.scala b/csv/shared/src/main/scala/fs2/data/csv/RowDecoderF.scala index f5a63052a..220d297cf 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/RowDecoderF.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/RowDecoderF.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/RowEncoder.scala b/csv/shared/src/main/scala/fs2/data/csv/RowEncoder.scala index fdc2f5335..4f0009e10 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/RowEncoder.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/RowEncoder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/RowEncoderF.scala b/csv/shared/src/main/scala/fs2/data/csv/RowEncoderF.scala index e86df9696..cc1f07888 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/RowEncoderF.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/RowEncoderF.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/RowF.scala b/csv/shared/src/main/scala/fs2/data/csv/RowF.scala index fc75868a1..ad13e4f6e 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/RowF.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/RowF.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/WriteableHeader.scala b/csv/shared/src/main/scala/fs2/data/csv/WriteableHeader.scala index a9af3120c..d70c565aa 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/WriteableHeader.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/WriteableHeader.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/exceptions.scala b/csv/shared/src/main/scala/fs2/data/csv/exceptions.scala index 5239339d2..bd5f0ccd8 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/exceptions.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/exceptions.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/internals/CsvRowParser.scala b/csv/shared/src/main/scala/fs2/data/csv/internals/CsvRowParser.scala index c8533abd7..0f75024ee 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/internals/CsvRowParser.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/internals/CsvRowParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/internals/RowParser.scala b/csv/shared/src/main/scala/fs2/data/csv/internals/RowParser.scala index 649f95f60..c7662cab5 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/internals/RowParser.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/internals/RowParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/internals/RowWriter.scala b/csv/shared/src/main/scala/fs2/data/csv/internals/RowWriter.scala index 0f84ebe7f..f446d0dc0 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/internals/RowWriter.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/internals/RowWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/internals/State.scala b/csv/shared/src/main/scala/fs2/data/csv/internals/State.scala index 3f1b22bc7..276466a53 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/internals/State.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/internals/State.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/main/scala/fs2/data/csv/package.scala b/csv/shared/src/main/scala/fs2/data/csv/package.scala index 819a0a9c6..13c250f05 100644 --- a/csv/shared/src/main/scala/fs2/data/csv/package.scala +++ b/csv/shared/src/main/scala/fs2/data/csv/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala-2.13+/fs2/data/csv/LiteralDecodersTest.scala b/csv/shared/src/test/scala-2.13+/fs2/data/csv/LiteralDecodersTest.scala index 61754b281..f4ed562df 100644 --- a/csv/shared/src/test/scala-2.13+/fs2/data/csv/LiteralDecodersTest.scala +++ b/csv/shared/src/test/scala-2.13+/fs2/data/csv/LiteralDecodersTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala-2.13+/fs2/data/csv/LiteralEncodersTest.scala b/csv/shared/src/test/scala-2.13+/fs2/data/csv/LiteralEncodersTest.scala index f5d6ed3ac..6c9761bad 100644 --- a/csv/shared/src/test/scala-2.13+/fs2/data/csv/LiteralEncodersTest.scala +++ b/csv/shared/src/test/scala-2.13+/fs2/data/csv/LiteralEncodersTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/CellDecoderTest.scala b/csv/shared/src/test/scala/fs2/data/csv/CellDecoderTest.scala index 761b903b8..d9ecce672 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/CellDecoderTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/CellDecoderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/CellEncoderTest.scala b/csv/shared/src/test/scala/fs2/data/csv/CellEncoderTest.scala index e879c063e..982570790 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/CellEncoderTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/CellEncoderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/CsvExceptionSpec.scala b/csv/shared/src/test/scala/fs2/data/csv/CsvExceptionSpec.scala index 465ebbdc3..332e2d64a 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/CsvExceptionSpec.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/CsvExceptionSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/CsvParserTest.scala b/csv/shared/src/test/scala/fs2/data/csv/CsvParserTest.scala index ba6ddb0d9..9507aa414 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/CsvParserTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/CsvParserTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/JavaTimeRoundTripTest.scala b/csv/shared/src/test/scala/fs2/data/csv/JavaTimeRoundTripTest.scala index 2cae989b1..b1e2f6168 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/JavaTimeRoundTripTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/JavaTimeRoundTripTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/LineNumberPreservationTest.scala b/csv/shared/src/test/scala/fs2/data/csv/LineNumberPreservationTest.scala index d8904840d..381025ade 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/LineNumberPreservationTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/LineNumberPreservationTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/RowDecoderFTest.scala b/csv/shared/src/test/scala/fs2/data/csv/RowDecoderFTest.scala index d87f0a41e..0924151c4 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/RowDecoderFTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/RowDecoderFTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/RowFTest.scala b/csv/shared/src/test/scala/fs2/data/csv/RowFTest.scala index a200ea43e..3f18f2b4e 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/RowFTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/RowFTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/RowParserTest.scala b/csv/shared/src/test/scala/fs2/data/csv/RowParserTest.scala index e9396e321..0bf617200 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/RowParserTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/RowParserTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/csv/shared/src/test/scala/fs2/data/csv/RowWriterTest.scala b/csv/shared/src/test/scala/fs2/data/csv/RowWriterTest.scala index afdc5ed81..251f84b78 100644 --- a/csv/shared/src/test/scala/fs2/data/csv/RowWriterTest.scala +++ b/csv/shared/src/test/scala/fs2/data/csv/RowWriterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/jqlike/src/main/scala/fs2/data/example/jqlike/JqLike.scala b/examples/jqlike/src/main/scala/fs2/data/example/jqlike/JqLike.scala index c080262ab..c4334fa92 100644 --- a/examples/jqlike/src/main/scala/fs2/data/example/jqlike/JqLike.scala +++ b/examples/jqlike/src/main/scala/fs2/data/example/jqlike/JqLike.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/Conversion.scala b/finite-state/shared/src/main/scala/fs2/data/esp/Conversion.scala index 9ed579325..74bf82f90 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/Conversion.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/Conversion.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/ESP.scala b/finite-state/shared/src/main/scala/fs2/data/esp/ESP.scala index 7c008567a..be210b5f9 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/ESP.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/ESP.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/ESPException.scala b/finite-state/shared/src/main/scala/fs2/data/esp/ESPException.scala index f5f5288fe..c824ac7ed 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/ESPException.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/ESPException.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/Expr.scala b/finite-state/shared/src/main/scala/fs2/data/esp/Expr.scala index ad909a479..8a43a2d02 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/Expr.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/Expr.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/Input.scala b/finite-state/shared/src/main/scala/fs2/data/esp/Input.scala index f25b39f44..0d917ceb2 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/Input.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/Input.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/Pattern.scala b/finite-state/shared/src/main/scala/fs2/data/esp/Pattern.scala index 8fcb74e6a..ce58d4f92 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/Pattern.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/Pattern.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/Rhs.scala b/finite-state/shared/src/main/scala/fs2/data/esp/Rhs.scala index 31e05b651..625373e3d 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/Rhs.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/Rhs.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/Tag.scala b/finite-state/shared/src/main/scala/fs2/data/esp/Tag.scala index 195d046e9..aadc02e15 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/Tag.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/Tag.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/esp/Tag2Tag.scala b/finite-state/shared/src/main/scala/fs2/data/esp/Tag2Tag.scala index 745da3d0b..000d33c49 100644 --- a/finite-state/shared/src/main/scala/fs2/data/esp/Tag2Tag.scala +++ b/finite-state/shared/src/main/scala/fs2/data/esp/Tag2Tag.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/matching/Table.scala b/finite-state/shared/src/main/scala/fs2/data/matching/Table.scala index ae6a492c8..57d8aac93 100644 --- a/finite-state/shared/src/main/scala/fs2/data/matching/Table.scala +++ b/finite-state/shared/src/main/scala/fs2/data/matching/Table.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/mft/MFT.scala b/finite-state/shared/src/main/scala/fs2/data/mft/MFT.scala index 6b40abb5d..713a6ea39 100644 --- a/finite-state/shared/src/main/scala/fs2/data/mft/MFT.scala +++ b/finite-state/shared/src/main/scala/fs2/data/mft/MFT.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/mft/MFTBuilder.scala b/finite-state/shared/src/main/scala/fs2/data/mft/MFTBuilder.scala index 7807c69be..caee47f46 100644 --- a/finite-state/shared/src/main/scala/fs2/data/mft/MFTBuilder.scala +++ b/finite-state/shared/src/main/scala/fs2/data/mft/MFTBuilder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/mft/Rules.scala b/finite-state/shared/src/main/scala/fs2/data/mft/Rules.scala index 9e7a8fc0b..d1ce812c8 100644 --- a/finite-state/shared/src/main/scala/fs2/data/mft/Rules.scala +++ b/finite-state/shared/src/main/scala/fs2/data/mft/Rules.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/mft/package.scala b/finite-state/shared/src/main/scala/fs2/data/mft/package.scala index f876974b0..d25965d84 100644 --- a/finite-state/shared/src/main/scala/fs2/data/mft/package.scala +++ b/finite-state/shared/src/main/scala/fs2/data/mft/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/mft/query/Query.scala b/finite-state/shared/src/main/scala/fs2/data/mft/query/Query.scala index 7513294b7..33d13dc2c 100644 --- a/finite-state/shared/src/main/scala/fs2/data/mft/query/Query.scala +++ b/finite-state/shared/src/main/scala/fs2/data/mft/query/Query.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/mft/query/QueryCompiler.scala b/finite-state/shared/src/main/scala/fs2/data/mft/query/QueryCompiler.scala index 559083400..653fe39c5 100644 --- a/finite-state/shared/src/main/scala/fs2/data/mft/query/QueryCompiler.scala +++ b/finite-state/shared/src/main/scala/fs2/data/mft/query/QueryCompiler.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/Compiler.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/Compiler.scala index 2eabbe248..39a7bdaad 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/Compiler.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/Compiler.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/DecisionTree.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/DecisionTree.scala index e8cd97660..6fda8c40b 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/DecisionTree.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/DecisionTree.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/IsPattern.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/IsPattern.scala index 7465af66e..c7665aef8 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/IsPattern.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/IsPattern.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/IsTag.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/IsTag.scala index 8e5d3a38e..9d0f68d12 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/IsTag.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/IsTag.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/PatternException.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/PatternException.scala index c2d8bd262..1e1841274 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/PatternException.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/PatternException.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/RawSkeleton.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/RawSkeleton.scala index 234f5ea4c..dcfefc348 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/RawSkeleton.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/RawSkeleton.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/Selectable.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/Selectable.scala index 694169f4a..611c7b07d 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/Selectable.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/Selectable.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/Selector.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/Selector.scala index 55120c21b..21da26ddb 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/Selector.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/Selector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pattern/Skeleton.scala b/finite-state/shared/src/main/scala/fs2/data/pattern/Skeleton.scala index a0fe6db92..f55f89647 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pattern/Skeleton.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pattern/Skeleton.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pfsa/Candidate.scala b/finite-state/shared/src/main/scala/fs2/data/pfsa/Candidate.scala index 14e2f8be4..937005332 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pfsa/Candidate.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pfsa/Candidate.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pfsa/PDFA.scala b/finite-state/shared/src/main/scala/fs2/data/pfsa/PDFA.scala index 83d397169..fae3cf715 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pfsa/PDFA.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pfsa/PDFA.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pfsa/PNFA.scala b/finite-state/shared/src/main/scala/fs2/data/pfsa/PNFA.scala index ebe0957e4..ab117b784 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pfsa/PNFA.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pfsa/PNFA.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pfsa/Pred.scala b/finite-state/shared/src/main/scala/fs2/data/pfsa/Pred.scala index b9f709e12..1e0447978 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pfsa/Pred.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pfsa/Pred.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pfsa/Regular.scala b/finite-state/shared/src/main/scala/fs2/data/pfsa/Regular.scala index ee7b578b8..d7ddfcf61 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pfsa/Regular.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pfsa/Regular.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/main/scala/fs2/data/pfsa/TreeQueryPipe.scala b/finite-state/shared/src/main/scala/fs2/data/pfsa/TreeQueryPipe.scala index a8135b24e..46a04386d 100644 --- a/finite-state/shared/src/main/scala/fs2/data/pfsa/TreeQueryPipe.scala +++ b/finite-state/shared/src/main/scala/fs2/data/pfsa/TreeQueryPipe.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/MiniXML.scala b/finite-state/shared/src/test/scala/fs2/data/MiniXML.scala index d7cac90f5..80279386b 100644 --- a/finite-state/shared/src/test/scala/fs2/data/MiniXML.scala +++ b/finite-state/shared/src/test/scala/fs2/data/MiniXML.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/MiniXPath.scala b/finite-state/shared/src/test/scala/fs2/data/MiniXPath.scala index 58efd10b0..d6c5da345 100644 --- a/finite-state/shared/src/test/scala/fs2/data/MiniXPath.scala +++ b/finite-state/shared/src/test/scala/fs2/data/MiniXPath.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/esp/CopySpec.scala b/finite-state/shared/src/test/scala/fs2/data/esp/CopySpec.scala index 8e3422676..f140564a7 100644 --- a/finite-state/shared/src/test/scala/fs2/data/esp/CopySpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/esp/CopySpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/esp/DupSpec.scala b/finite-state/shared/src/test/scala/fs2/data/esp/DupSpec.scala index 6ae4d7e47..27f701a5b 100644 --- a/finite-state/shared/src/test/scala/fs2/data/esp/DupSpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/esp/DupSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/esp/ESPSpec.scala b/finite-state/shared/src/test/scala/fs2/data/esp/ESPSpec.scala index 2a4604b7f..275e62ae6 100644 --- a/finite-state/shared/src/test/scala/fs2/data/esp/ESPSpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/esp/ESPSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/mft/QuerySpec.scala b/finite-state/shared/src/test/scala/fs2/data/mft/QuerySpec.scala index bf30c714e..5adb2e084 100644 --- a/finite-state/shared/src/test/scala/fs2/data/mft/QuerySpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/mft/QuerySpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/pattern/PatGuardSpec.scala b/finite-state/shared/src/test/scala/fs2/data/pattern/PatGuardSpec.scala index 922af0e48..0a332fe85 100644 --- a/finite-state/shared/src/test/scala/fs2/data/pattern/PatGuardSpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/pattern/PatGuardSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/pattern/PatSpec.scala b/finite-state/shared/src/test/scala/fs2/data/pattern/PatSpec.scala index 99fe1d449..a8c50c8e2 100644 --- a/finite-state/shared/src/test/scala/fs2/data/pattern/PatSpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/pattern/PatSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/pattern/example/ArticleSpec.scala b/finite-state/shared/src/test/scala/fs2/data/pattern/example/ArticleSpec.scala index 2b1e2c746..9c9eae9cc 100644 --- a/finite-state/shared/src/test/scala/fs2/data/pattern/example/ArticleSpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/pattern/example/ArticleSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/pattern/example/PatternSpec.scala b/finite-state/shared/src/test/scala/fs2/data/pattern/example/PatternSpec.scala index 663755e67..43bf9883d 100644 --- a/finite-state/shared/src/test/scala/fs2/data/pattern/example/PatternSpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/pattern/example/PatternSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/pfsa/RegularSpec.scala b/finite-state/shared/src/test/scala/fs2/data/pfsa/RegularSpec.scala index 9a859a765..f89d457d8 100644 --- a/finite-state/shared/src/test/scala/fs2/data/pfsa/RegularSpec.scala +++ b/finite-state/shared/src/test/scala/fs2/data/pfsa/RegularSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/finite-state/shared/src/test/scala/fs2/data/pfsa/package.scala b/finite-state/shared/src/test/scala/fs2/data/pfsa/package.scala index b5d2a2e3c..e90486c18 100644 --- a/finite-state/shared/src/test/scala/fs2/data/pfsa/package.scala +++ b/finite-state/shared/src/test/scala/fs2/data/pfsa/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/circe/src/main/scala/fs2/data/json/circe/package.scala b/json/circe/src/main/scala/fs2/data/json/circe/package.scala index 826131734..9834b2d63 100644 --- a/json/circe/src/main/scala/fs2/data/json/circe/package.scala +++ b/json/circe/src/main/scala/fs2/data/json/circe/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/circe/src/test/scala/fs2/data/json/circe/JsonExceptionSpec.scala b/json/circe/src/test/scala/fs2/data/json/circe/JsonExceptionSpec.scala index 370d89562..6890f1d58 100644 --- a/json/circe/src/test/scala/fs2/data/json/circe/JsonExceptionSpec.scala +++ b/json/circe/src/test/scala/fs2/data/json/circe/JsonExceptionSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/circe/src/test/scala/fs2/data/json/circe/JsonMergePatchTest.scala b/json/circe/src/test/scala/fs2/data/json/circe/JsonMergePatchTest.scala index ea9de98f9..494ef38a7 100644 --- a/json/circe/src/test/scala/fs2/data/json/circe/JsonMergePatchTest.scala +++ b/json/circe/src/test/scala/fs2/data/json/circe/JsonMergePatchTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/circe/src/test/scala/fs2/data/json/circe/JsonParserSpec.scala b/json/circe/src/test/scala/fs2/data/json/circe/JsonParserSpec.scala index cd68eba8c..0d1b8086e 100644 --- a/json/circe/src/test/scala/fs2/data/json/circe/JsonParserSpec.scala +++ b/json/circe/src/test/scala/fs2/data/json/circe/JsonParserSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/circe/src/test/scala/fs2/data/json/circe/JsonSelectorSpec.scala b/json/circe/src/test/scala/fs2/data/json/circe/JsonSelectorSpec.scala index e3d8e910a..5cb2929ab 100644 --- a/json/circe/src/test/scala/fs2/data/json/circe/JsonSelectorSpec.scala +++ b/json/circe/src/test/scala/fs2/data/json/circe/JsonSelectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/circe/src/test/scala/fs2/data/json/circe/TokenizerSpec.scala b/json/circe/src/test/scala/fs2/data/json/circe/TokenizerSpec.scala index 6789f467d..35635fd1b 100644 --- a/json/circe/src/test/scala/fs2/data/json/circe/TokenizerSpec.scala +++ b/json/circe/src/test/scala/fs2/data/json/circe/TokenizerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/diffson/src/main/scala/fs2/data/json/mergepatch/package.scala b/json/diffson/src/main/scala/fs2/data/json/mergepatch/package.scala index 5c30ba0df..6adf5a679 100644 --- a/json/diffson/src/main/scala/fs2/data/json/mergepatch/package.scala +++ b/json/diffson/src/main/scala/fs2/data/json/mergepatch/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/diffson/src/test/scala/fs2/data/json/mergepatch/JsonMergePatchTest.scala b/json/diffson/src/test/scala/fs2/data/json/mergepatch/JsonMergePatchTest.scala index da9439660..0776bb453 100644 --- a/json/diffson/src/test/scala/fs2/data/json/mergepatch/JsonMergePatchTest.scala +++ b/json/diffson/src/test/scala/fs2/data/json/mergepatch/JsonMergePatchTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/interpolators/src/main/scala-2/fs2/data/json/interpolators/SelectorInterpolator.scala b/json/interpolators/src/main/scala-2/fs2/data/json/interpolators/SelectorInterpolator.scala index f4dc9e227..ebc1ca5cb 100644 --- a/json/interpolators/src/main/scala-2/fs2/data/json/interpolators/SelectorInterpolator.scala +++ b/json/interpolators/src/main/scala-2/fs2/data/json/interpolators/SelectorInterpolator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/interpolators/src/main/scala-2/fs2/data/json/interpolators/package.scala b/json/interpolators/src/main/scala-2/fs2/data/json/interpolators/package.scala index 34e4d5e38..dfaa4f5b9 100644 --- a/json/interpolators/src/main/scala-2/fs2/data/json/interpolators/package.scala +++ b/json/interpolators/src/main/scala-2/fs2/data/json/interpolators/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/interpolators/src/main/scala-3/fs2/data/json/interpolators/SelectorInterpolator.scala b/json/interpolators/src/main/scala-3/fs2/data/json/interpolators/SelectorInterpolator.scala index 25307351d..ee7530684 100644 --- a/json/interpolators/src/main/scala-3/fs2/data/json/interpolators/SelectorInterpolator.scala +++ b/json/interpolators/src/main/scala-3/fs2/data/json/interpolators/SelectorInterpolator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/interpolators/src/main/scala-3/fs2/data/json/interpolators/package.scala b/json/interpolators/src/main/scala-3/fs2/data/json/interpolators/package.scala index a1a77d516..89b6aec7f 100644 --- a/json/interpolators/src/main/scala-3/fs2/data/json/interpolators/package.scala +++ b/json/interpolators/src/main/scala-3/fs2/data/json/interpolators/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/interpolators/src/test/scala/fs2/data/json/interpolators/JsonInterpolatorsTest.scala b/json/interpolators/src/test/scala/fs2/data/json/interpolators/JsonInterpolatorsTest.scala index beda246d6..8d9059ca3 100644 --- a/json/interpolators/src/test/scala/fs2/data/json/interpolators/JsonInterpolatorsTest.scala +++ b/json/interpolators/src/test/scala/fs2/data/json/interpolators/JsonInterpolatorsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/play/src/main/scala/fs2/data/json/playJson/package.scala b/json/play/src/main/scala/fs2/data/json/playJson/package.scala index 6cadcf085..4ccbc7cea 100644 --- a/json/play/src/main/scala/fs2/data/json/playJson/package.scala +++ b/json/play/src/main/scala/fs2/data/json/playJson/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/play/src/test/scala/fs2/data/json/playJson/JsonExceptionSpec.scala b/json/play/src/test/scala/fs2/data/json/playJson/JsonExceptionSpec.scala index 9d53136a2..6c90a78c4 100644 --- a/json/play/src/test/scala/fs2/data/json/playJson/JsonExceptionSpec.scala +++ b/json/play/src/test/scala/fs2/data/json/playJson/JsonExceptionSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/play/src/test/scala/fs2/data/json/playJson/JsonMergePatchTest.scala b/json/play/src/test/scala/fs2/data/json/playJson/JsonMergePatchTest.scala index 10460b4d6..c1c1e8da6 100644 --- a/json/play/src/test/scala/fs2/data/json/playJson/JsonMergePatchTest.scala +++ b/json/play/src/test/scala/fs2/data/json/playJson/JsonMergePatchTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/play/src/test/scala/fs2/data/json/playJson/JsonSelectorSpec.scala b/json/play/src/test/scala/fs2/data/json/playJson/JsonSelectorSpec.scala index 44764766f..a4815bee0 100644 --- a/json/play/src/test/scala/fs2/data/json/playJson/JsonSelectorSpec.scala +++ b/json/play/src/test/scala/fs2/data/json/playJson/JsonSelectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/play/src/test/scala/fs2/data/json/playJson/TokenizerSpec.scala b/json/play/src/test/scala/fs2/data/json/playJson/TokenizerSpec.scala index de9726890..4e18a3e5c 100644 --- a/json/play/src/test/scala/fs2/data/json/playJson/TokenizerSpec.scala +++ b/json/play/src/test/scala/fs2/data/json/playJson/TokenizerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala-2.12/fs2/data/package.scala b/json/src/main/scala-2.12/fs2/data/package.scala index 236521db3..3ec05ebe1 100644 --- a/json/src/main/scala-2.12/fs2/data/package.scala +++ b/json/src/main/scala-2.12/fs2/data/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala-2/fs2/data/json/jq/literals.scala b/json/src/main/scala-2/fs2/data/json/jq/literals.scala index 638cc311f..48fe140b3 100644 --- a/json/src/main/scala-2/fs2/data/json/jq/literals.scala +++ b/json/src/main/scala-2/fs2/data/json/jq/literals.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala-2/fs2/data/json/jsonpath/literals.scala b/json/src/main/scala-2/fs2/data/json/jsonpath/literals.scala index 780a8cd33..556c1bbcd 100644 --- a/json/src/main/scala-2/fs2/data/json/jsonpath/literals.scala +++ b/json/src/main/scala-2/fs2/data/json/jsonpath/literals.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala-3/fs2/data/json/jq/literals.scala b/json/src/main/scala-3/fs2/data/json/jq/literals.scala index c620588d6..6464bbcce 100644 --- a/json/src/main/scala-3/fs2/data/json/jq/literals.scala +++ b/json/src/main/scala-3/fs2/data/json/jq/literals.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala-3/fs2/data/json/jsonpath/literals.scala b/json/src/main/scala-3/fs2/data/json/jsonpath/literals.scala index 8fbadf282..879551f7c 100644 --- a/json/src/main/scala-3/fs2/data/json/jsonpath/literals.scala +++ b/json/src/main/scala-3/fs2/data/json/jsonpath/literals.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/JsonContext.scala b/json/src/main/scala/fs2/data/json/JsonContext.scala index 8d29b843f..e4b4dff0a 100644 --- a/json/src/main/scala/fs2/data/json/JsonContext.scala +++ b/json/src/main/scala/fs2/data/json/JsonContext.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/JsonException.scala b/json/src/main/scala/fs2/data/json/JsonException.scala index 8622c4ccf..54b671874 100644 --- a/json/src/main/scala/fs2/data/json/JsonException.scala +++ b/json/src/main/scala/fs2/data/json/JsonException.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/SelectorParser.scala b/json/src/main/scala/fs2/data/json/SelectorParser.scala index 98f36815c..8dab19953 100644 --- a/json/src/main/scala/fs2/data/json/SelectorParser.scala +++ b/json/src/main/scala/fs2/data/json/SelectorParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/ast/Builder.scala b/json/src/main/scala/fs2/data/json/ast/Builder.scala index cd5475ad4..f831c963f 100644 --- a/json/src/main/scala/fs2/data/json/ast/Builder.scala +++ b/json/src/main/scala/fs2/data/json/ast/Builder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/ast/Tokenizer.scala b/json/src/main/scala/fs2/data/json/ast/Tokenizer.scala index 44dbc0668..a12b48211 100644 --- a/json/src/main/scala/fs2/data/json/ast/Tokenizer.scala +++ b/json/src/main/scala/fs2/data/json/ast/Tokenizer.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/ast/package.scala b/json/src/main/scala/fs2/data/json/ast/package.scala index 717ebdc95..b82421bcd 100644 --- a/json/src/main/scala/fs2/data/json/ast/package.scala +++ b/json/src/main/scala/fs2/data/json/ast/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/codec/Deserializer.scala b/json/src/main/scala/fs2/data/json/codec/Deserializer.scala index eb4bfd840..d488313c1 100644 --- a/json/src/main/scala/fs2/data/json/codec/Deserializer.scala +++ b/json/src/main/scala/fs2/data/json/codec/Deserializer.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/codec/Serializer.scala b/json/src/main/scala/fs2/data/json/codec/Serializer.scala index 62ff48a95..0e5c22fe7 100644 --- a/json/src/main/scala/fs2/data/json/codec/Serializer.scala +++ b/json/src/main/scala/fs2/data/json/codec/Serializer.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/codec/package.scala b/json/src/main/scala/fs2/data/json/codec/package.scala index 049fb3b59..4a8e8fa81 100644 --- a/json/src/main/scala/fs2/data/json/codec/package.scala +++ b/json/src/main/scala/fs2/data/json/codec/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/BuilderChunkAccumulator.scala b/json/src/main/scala/fs2/data/json/internal/BuilderChunkAccumulator.scala index 9ef5a75a5..75ea08b0f 100644 --- a/json/src/main/scala/fs2/data/json/internal/BuilderChunkAccumulator.scala +++ b/json/src/main/scala/fs2/data/json/internal/BuilderChunkAccumulator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/ChunkAccumulator.scala b/json/src/main/scala/fs2/data/json/internal/ChunkAccumulator.scala index 71bec0375..2febeb3aa 100644 --- a/json/src/main/scala/fs2/data/json/internal/ChunkAccumulator.scala +++ b/json/src/main/scala/fs2/data/json/internal/ChunkAccumulator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/JsonTokenParser.scala b/json/src/main/scala/fs2/data/json/internal/JsonTokenParser.scala index 33ef54d0c..bf5e3dda2 100644 --- a/json/src/main/scala/fs2/data/json/internal/JsonTokenParser.scala +++ b/json/src/main/scala/fs2/data/json/internal/JsonTokenParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/LegacyTokenParser.scala b/json/src/main/scala/fs2/data/json/internal/LegacyTokenParser.scala index 8dd201769..3eb7339a4 100644 --- a/json/src/main/scala/fs2/data/json/internal/LegacyTokenParser.scala +++ b/json/src/main/scala/fs2/data/json/internal/LegacyTokenParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/NumberState.scala b/json/src/main/scala/fs2/data/json/internal/NumberState.scala index 5d2934f5d..06ad75cb3 100644 --- a/json/src/main/scala/fs2/data/json/internal/NumberState.scala +++ b/json/src/main/scala/fs2/data/json/internal/NumberState.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/ObjectWrapper.scala b/json/src/main/scala/fs2/data/json/internal/ObjectWrapper.scala index b34159996..89406c541 100644 --- a/json/src/main/scala/fs2/data/json/internal/ObjectWrapper.scala +++ b/json/src/main/scala/fs2/data/json/internal/ObjectWrapper.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/Renderer.scala b/json/src/main/scala/fs2/data/json/internal/Renderer.scala index 97762520a..06124c6ec 100644 --- a/json/src/main/scala/fs2/data/json/internal/Renderer.scala +++ b/json/src/main/scala/fs2/data/json/internal/Renderer.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/State.scala b/json/src/main/scala/fs2/data/json/internal/State.scala index 3083e5383..2bf812a2c 100644 --- a/json/src/main/scala/fs2/data/json/internal/State.scala +++ b/json/src/main/scala/fs2/data/json/internal/State.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/StringState.scala b/json/src/main/scala/fs2/data/json/internal/StringState.scala index 8ee6c52ba..9e1dd8749 100644 --- a/json/src/main/scala/fs2/data/json/internal/StringState.scala +++ b/json/src/main/scala/fs2/data/json/internal/StringState.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/TokenChunkAccumulator.scala b/json/src/main/scala/fs2/data/json/internal/TokenChunkAccumulator.scala index 61b75f55e..fbcdf8eca 100644 --- a/json/src/main/scala/fs2/data/json/internal/TokenChunkAccumulator.scala +++ b/json/src/main/scala/fs2/data/json/internal/TokenChunkAccumulator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/TokenParser.scala b/json/src/main/scala/fs2/data/json/internal/TokenParser.scala index 44ce4639d..e035dcf2d 100644 --- a/json/src/main/scala/fs2/data/json/internal/TokenParser.scala +++ b/json/src/main/scala/fs2/data/json/internal/TokenParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/TokenSelector.scala b/json/src/main/scala/fs2/data/json/internal/TokenSelector.scala index 8b337c00c..1deff08ba 100644 --- a/json/src/main/scala/fs2/data/json/internal/TokenSelector.scala +++ b/json/src/main/scala/fs2/data/json/internal/TokenSelector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/ValueParser.scala b/json/src/main/scala/fs2/data/json/internal/ValueParser.scala index 7f506b562..23b1adc79 100644 --- a/json/src/main/scala/fs2/data/json/internal/ValueParser.scala +++ b/json/src/main/scala/fs2/data/json/internal/ValueParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/internal/package.scala b/json/src/main/scala/fs2/data/json/internal/package.scala index 81bc84802..088044e91 100644 --- a/json/src/main/scala/fs2/data/json/internal/package.scala +++ b/json/src/main/scala/fs2/data/json/internal/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/CompiledJq.scala b/json/src/main/scala/fs2/data/json/jq/CompiledJq.scala index 1c13919ba..f6d2ebb56 100644 --- a/json/src/main/scala/fs2/data/json/jq/CompiledJq.scala +++ b/json/src/main/scala/fs2/data/json/jq/CompiledJq.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/Compiler.scala b/json/src/main/scala/fs2/data/json/jq/Compiler.scala index d49ae603f..21a6be119 100644 --- a/json/src/main/scala/fs2/data/json/jq/Compiler.scala +++ b/json/src/main/scala/fs2/data/json/jq/Compiler.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/JqParser.scala b/json/src/main/scala/fs2/data/json/jq/JqParser.scala index 973113b54..ba218a57f 100644 --- a/json/src/main/scala/fs2/data/json/jq/JqParser.scala +++ b/json/src/main/scala/fs2/data/json/jq/JqParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/PipedCompiledJq.scala b/json/src/main/scala/fs2/data/json/jq/PipedCompiledJq.scala index 44c43b22e..ab7495dc8 100644 --- a/json/src/main/scala/fs2/data/json/jq/PipedCompiledJq.scala +++ b/json/src/main/scala/fs2/data/json/jq/PipedCompiledJq.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/TaggedMatcher.scala b/json/src/main/scala/fs2/data/json/jq/TaggedMatcher.scala index 33504261e..67e2d3ac3 100644 --- a/json/src/main/scala/fs2/data/json/jq/TaggedMatcher.scala +++ b/json/src/main/scala/fs2/data/json/jq/TaggedMatcher.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/ast.scala b/json/src/main/scala/fs2/data/json/jq/ast.scala index 7556678ca..2a93fa3e4 100644 --- a/json/src/main/scala/fs2/data/json/jq/ast.scala +++ b/json/src/main/scala/fs2/data/json/jq/ast.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/internal/ESPCompiledJq.scala b/json/src/main/scala/fs2/data/json/jq/internal/ESPCompiledJq.scala index 86fdea5c9..7b3406d31 100644 --- a/json/src/main/scala/fs2/data/json/jq/internal/ESPCompiledJq.scala +++ b/json/src/main/scala/fs2/data/json/jq/internal/ESPCompiledJq.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/internal/ESPJqCompiler.scala b/json/src/main/scala/fs2/data/json/jq/internal/ESPJqCompiler.scala index 5faea0b4f..7caf6783f 100644 --- a/json/src/main/scala/fs2/data/json/jq/internal/ESPJqCompiler.scala +++ b/json/src/main/scala/fs2/data/json/jq/internal/ESPJqCompiler.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jq/internal/package.scala b/json/src/main/scala/fs2/data/json/jq/internal/package.scala index 2c5686d8f..b10933dcf 100644 --- a/json/src/main/scala/fs2/data/json/jq/internal/package.scala +++ b/json/src/main/scala/fs2/data/json/jq/internal/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jsonpath/JsonPath.scala b/json/src/main/scala/fs2/data/json/jsonpath/JsonPath.scala index 674c04528..c02fefc1e 100644 --- a/json/src/main/scala/fs2/data/json/jsonpath/JsonPath.scala +++ b/json/src/main/scala/fs2/data/json/jsonpath/JsonPath.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jsonpath/JsonPathParser.scala b/json/src/main/scala/fs2/data/json/jsonpath/JsonPathParser.scala index 87b08b996..b09f841f6 100644 --- a/json/src/main/scala/fs2/data/json/jsonpath/JsonPathParser.scala +++ b/json/src/main/scala/fs2/data/json/jsonpath/JsonPathParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jsonpath/internals/JsonQueryPipe.scala b/json/src/main/scala/fs2/data/json/jsonpath/internals/JsonQueryPipe.scala index d0254d08c..251232a99 100644 --- a/json/src/main/scala/fs2/data/json/jsonpath/internals/JsonQueryPipe.scala +++ b/json/src/main/scala/fs2/data/json/jsonpath/internals/JsonQueryPipe.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/jsonpath/package.scala b/json/src/main/scala/fs2/data/json/jsonpath/package.scala index 4ab25c845..1ac66da5f 100644 --- a/json/src/main/scala/fs2/data/json/jsonpath/package.scala +++ b/json/src/main/scala/fs2/data/json/jsonpath/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/package.scala b/json/src/main/scala/fs2/data/json/package.scala index 9faeddeee..cf5f05e25 100644 --- a/json/src/main/scala/fs2/data/json/package.scala +++ b/json/src/main/scala/fs2/data/json/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/selector/dsl.scala b/json/src/main/scala/fs2/data/json/selector/dsl.scala index 769627b99..0ba64a112 100644 --- a/json/src/main/scala/fs2/data/json/selector/dsl.scala +++ b/json/src/main/scala/fs2/data/json/selector/dsl.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/selector/package.scala b/json/src/main/scala/fs2/data/json/selector/package.scala index 352af86d2..f5d520d95 100644 --- a/json/src/main/scala/fs2/data/json/selector/package.scala +++ b/json/src/main/scala/fs2/data/json/selector/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/selectors.scala b/json/src/main/scala/fs2/data/json/selectors.scala index 47bdb7d0c..4e5087f29 100644 --- a/json/src/main/scala/fs2/data/json/selectors.scala +++ b/json/src/main/scala/fs2/data/json/selectors.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/tagged/JsonTagger.scala b/json/src/main/scala/fs2/data/json/tagged/JsonTagger.scala index b366ade04..93f2342d6 100644 --- a/json/src/main/scala/fs2/data/json/tagged/JsonTagger.scala +++ b/json/src/main/scala/fs2/data/json/tagged/JsonTagger.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/tagged/package.scala b/json/src/main/scala/fs2/data/json/tagged/package.scala index fcc9315ab..fcb040cb9 100644 --- a/json/src/main/scala/fs2/data/json/tagged/package.scala +++ b/json/src/main/scala/fs2/data/json/tagged/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/main/scala/fs2/data/json/tokens.scala b/json/src/main/scala/fs2/data/json/tokens.scala index 618d643cc..42a9006bd 100644 --- a/json/src/main/scala/fs2/data/json/tokens.scala +++ b/json/src/main/scala/fs2/data/json/tokens.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/test/scala/fs2/data/json/Issue515Spec.scala b/json/src/test/scala/fs2/data/json/Issue515Spec.scala index 3af76fe3a..6d4ff8b9b 100644 --- a/json/src/test/scala/fs2/data/json/Issue515Spec.scala +++ b/json/src/test/scala/fs2/data/json/Issue515Spec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/test/scala/fs2/data/json/JsonExceptionSpec.scala b/json/src/test/scala/fs2/data/json/JsonExceptionSpec.scala index 95f8154be..0ed91839e 100644 --- a/json/src/test/scala/fs2/data/json/JsonExceptionSpec.scala +++ b/json/src/test/scala/fs2/data/json/JsonExceptionSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/test/scala/fs2/data/json/JsonParsertest.scala b/json/src/test/scala/fs2/data/json/JsonParsertest.scala index c9980c6ab..c934b0799 100644 --- a/json/src/test/scala/fs2/data/json/JsonParsertest.scala +++ b/json/src/test/scala/fs2/data/json/JsonParsertest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/test/scala/fs2/data/json/JsonSelectorSpec.scala b/json/src/test/scala/fs2/data/json/JsonSelectorSpec.scala index 0a0047921..0062d0323 100644 --- a/json/src/test/scala/fs2/data/json/JsonSelectorSpec.scala +++ b/json/src/test/scala/fs2/data/json/JsonSelectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/test/scala/fs2/data/json/RenderSpec.scala b/json/src/test/scala/fs2/data/json/RenderSpec.scala index 6d0027c14..ae7a721dc 100644 --- a/json/src/test/scala/fs2/data/json/RenderSpec.scala +++ b/json/src/test/scala/fs2/data/json/RenderSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/test/scala/fs2/data/json/TokenizerSpec.scala b/json/src/test/scala/fs2/data/json/TokenizerSpec.scala index 7408239e0..44a042aba 100644 --- a/json/src/test/scala/fs2/data/json/TokenizerSpec.scala +++ b/json/src/test/scala/fs2/data/json/TokenizerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/test/scala/fs2/data/json/jq/JqSpec.scala b/json/src/test/scala/fs2/data/json/jq/JqSpec.scala index 36bfbdf25..ceba28267 100644 --- a/json/src/test/scala/fs2/data/json/jq/JqSpec.scala +++ b/json/src/test/scala/fs2/data/json/jq/JqSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json/src/test/scala/fs2/data/json/jsonpath/JsonPathSpec.scala b/json/src/test/scala/fs2/data/json/jsonpath/JsonPathSpec.scala index 9b2849187..0c9907db1 100644 --- a/json/src/test/scala/fs2/data/json/jsonpath/JsonPathSpec.scala +++ b/json/src/test/scala/fs2/data/json/jsonpath/JsonPathSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/text/shared/src/main/scala/fs2/data/text/CharLikeChunks.scala b/text/shared/src/main/scala/fs2/data/text/CharLikeChunks.scala index 97bb5c150..3394a9e4c 100644 --- a/text/shared/src/main/scala/fs2/data/text/CharLikeChunks.scala +++ b/text/shared/src/main/scala/fs2/data/text/CharLikeChunks.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/text/shared/src/main/scala/fs2/data/text/CharRanges.scala b/text/shared/src/main/scala/fs2/data/text/CharRanges.scala index 117b8dcdc..5014e88d0 100644 --- a/text/shared/src/main/scala/fs2/data/text/CharRanges.scala +++ b/text/shared/src/main/scala/fs2/data/text/CharRanges.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/text/shared/src/main/scala/fs2/data/text/package.scala b/text/shared/src/main/scala/fs2/data/text/package.scala index b1f4a37b1..7cf5ec0c8 100644 --- a/text/shared/src/main/scala/fs2/data/text/package.scala +++ b/text/shared/src/main/scala/fs2/data/text/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/scala-xml/src/main/scala/fs2/data/xml/scalaXml/package.scala b/xml/scala-xml/src/main/scala/fs2/data/xml/scalaXml/package.scala index abcb99e54..3ed5399e5 100644 --- a/xml/scala-xml/src/main/scala/fs2/data/xml/scalaXml/package.scala +++ b/xml/scala-xml/src/main/scala/fs2/data/xml/scalaXml/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/scala-xml/src/test/scala/fs2/data/xml/scalaXml/EventifierSpec.scala b/xml/scala-xml/src/test/scala/fs2/data/xml/scalaXml/EventifierSpec.scala index 354136b1f..c869f4e32 100644 --- a/xml/scala-xml/src/test/scala/fs2/data/xml/scalaXml/EventifierSpec.scala +++ b/xml/scala-xml/src/test/scala/fs2/data/xml/scalaXml/EventifierSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/scala-xml/src/test/scala/fs2/data/xml/scalaXml/XPathSpec.scala b/xml/scala-xml/src/test/scala/fs2/data/xml/scalaXml/XPathSpec.scala index c8a13f582..a659c8a79 100644 --- a/xml/scala-xml/src/test/scala/fs2/data/xml/scalaXml/XPathSpec.scala +++ b/xml/scala-xml/src/test/scala/fs2/data/xml/scalaXml/XPathSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala-2/fs2/data/xml/xpath/literals.scala b/xml/src/main/scala-2/fs2/data/xml/xpath/literals.scala index 63ea2c1ab..a3ac9bb74 100644 --- a/xml/src/main/scala-2/fs2/data/xml/xpath/literals.scala +++ b/xml/src/main/scala-2/fs2/data/xml/xpath/literals.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala-3/fs2/data/xml/xpath/literals.scala b/xml/src/main/scala-3/fs2/data/xml/xpath/literals.scala index eaa91e704..818186782 100644 --- a/xml/src/main/scala-3/fs2/data/xml/xpath/literals.scala +++ b/xml/src/main/scala-3/fs2/data/xml/xpath/literals.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/Attr.scala b/xml/src/main/scala/fs2/data/xml/Attr.scala index b411c0257..1c151aa73 100644 --- a/xml/src/main/scala/fs2/data/xml/Attr.scala +++ b/xml/src/main/scala/fs2/data/xml/Attr.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/QName.scala b/xml/src/main/scala/fs2/data/xml/QName.scala index d5094913e..e0620a386 100644 --- a/xml/src/main/scala/fs2/data/xml/QName.scala +++ b/xml/src/main/scala/fs2/data/xml/QName.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/XmlEvent.scala b/xml/src/main/scala/fs2/data/xml/XmlEvent.scala index 14fbca84c..5bec874ce 100644 --- a/xml/src/main/scala/fs2/data/xml/XmlEvent.scala +++ b/xml/src/main/scala/fs2/data/xml/XmlEvent.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/XmlException.scala b/xml/src/main/scala/fs2/data/xml/XmlException.scala index 072b4b37e..0ddede6be 100644 --- a/xml/src/main/scala/fs2/data/xml/XmlException.scala +++ b/xml/src/main/scala/fs2/data/xml/XmlException.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/dom/DocumentBuilder.scala b/xml/src/main/scala/fs2/data/xml/dom/DocumentBuilder.scala index 0e668f667..476ce7f3a 100644 --- a/xml/src/main/scala/fs2/data/xml/dom/DocumentBuilder.scala +++ b/xml/src/main/scala/fs2/data/xml/dom/DocumentBuilder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/dom/DocumentEventifier.scala b/xml/src/main/scala/fs2/data/xml/dom/DocumentEventifier.scala index 733d39512..0496a4fe3 100644 --- a/xml/src/main/scala/fs2/data/xml/dom/DocumentEventifier.scala +++ b/xml/src/main/scala/fs2/data/xml/dom/DocumentEventifier.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/dom/ElementBuilder.scala b/xml/src/main/scala/fs2/data/xml/dom/ElementBuilder.scala index e657ddbac..df69915dd 100644 --- a/xml/src/main/scala/fs2/data/xml/dom/ElementBuilder.scala +++ b/xml/src/main/scala/fs2/data/xml/dom/ElementBuilder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/dom/TreeParser.scala b/xml/src/main/scala/fs2/data/xml/dom/TreeParser.scala index 1d9d6da79..6457c6b8b 100644 --- a/xml/src/main/scala/fs2/data/xml/dom/TreeParser.scala +++ b/xml/src/main/scala/fs2/data/xml/dom/TreeParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/dom/package.scala b/xml/src/main/scala/fs2/data/xml/dom/package.scala index 5ee71e44f..aa38a9206 100644 --- a/xml/src/main/scala/fs2/data/xml/dom/package.scala +++ b/xml/src/main/scala/fs2/data/xml/dom/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/errors.scala b/xml/src/main/scala/fs2/data/xml/errors.scala index ce7e2bdf4..2b92535ad 100644 --- a/xml/src/main/scala/fs2/data/xml/errors.scala +++ b/xml/src/main/scala/fs2/data/xml/errors.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/internals/EventParser.scala b/xml/src/main/scala/fs2/data/xml/internals/EventParser.scala index f74ecc3f4..141c420dd 100644 --- a/xml/src/main/scala/fs2/data/xml/internals/EventParser.scala +++ b/xml/src/main/scala/fs2/data/xml/internals/EventParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/internals/MarkupToken.scala b/xml/src/main/scala/fs2/data/xml/internals/MarkupToken.scala index a63298e8b..5a69e875a 100644 --- a/xml/src/main/scala/fs2/data/xml/internals/MarkupToken.scala +++ b/xml/src/main/scala/fs2/data/xml/internals/MarkupToken.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/internals/NamespaceResolver.scala b/xml/src/main/scala/fs2/data/xml/internals/NamespaceResolver.scala index 5f4e5f80a..476bb5cf3 100644 --- a/xml/src/main/scala/fs2/data/xml/internals/NamespaceResolver.scala +++ b/xml/src/main/scala/fs2/data/xml/internals/NamespaceResolver.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/internals/Normalizer.scala b/xml/src/main/scala/fs2/data/xml/internals/Normalizer.scala index 236ca9dcf..b20cca60c 100644 --- a/xml/src/main/scala/fs2/data/xml/internals/Normalizer.scala +++ b/xml/src/main/scala/fs2/data/xml/internals/Normalizer.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/internals/ReferenceResolver.scala b/xml/src/main/scala/fs2/data/xml/internals/ReferenceResolver.scala index 059c8195e..32a88d467 100644 --- a/xml/src/main/scala/fs2/data/xml/internals/ReferenceResolver.scala +++ b/xml/src/main/scala/fs2/data/xml/internals/ReferenceResolver.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/internals/package.scala b/xml/src/main/scala/fs2/data/xml/internals/package.scala index 2f1da47e9..f6f99c664 100644 --- a/xml/src/main/scala/fs2/data/xml/internals/package.scala +++ b/xml/src/main/scala/fs2/data/xml/internals/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/package.scala b/xml/src/main/scala/fs2/data/xml/package.scala index 6a0f49108..21920d497 100644 --- a/xml/src/main/scala/fs2/data/xml/package.scala +++ b/xml/src/main/scala/fs2/data/xml/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/xpath/XPath.scala b/xml/src/main/scala/fs2/data/xml/xpath/XPath.scala index 976ffbfa4..b0eddcfa6 100644 --- a/xml/src/main/scala/fs2/data/xml/xpath/XPath.scala +++ b/xml/src/main/scala/fs2/data/xml/xpath/XPath.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/xpath/XPathParser.scala b/xml/src/main/scala/fs2/data/xml/xpath/XPathParser.scala index 9356967ec..b4798bb60 100644 --- a/xml/src/main/scala/fs2/data/xml/xpath/XPathParser.scala +++ b/xml/src/main/scala/fs2/data/xml/xpath/XPathParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/xpath/internals/LocationMatch.scala b/xml/src/main/scala/fs2/data/xml/xpath/internals/LocationMatch.scala index 47c727f7b..a423a57c7 100644 --- a/xml/src/main/scala/fs2/data/xml/xpath/internals/LocationMatch.scala +++ b/xml/src/main/scala/fs2/data/xml/xpath/internals/LocationMatch.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/xpath/internals/XmlQueryPipe.scala b/xml/src/main/scala/fs2/data/xml/xpath/internals/XmlQueryPipe.scala index 4c3af0770..42b4ac567 100644 --- a/xml/src/main/scala/fs2/data/xml/xpath/internals/XmlQueryPipe.scala +++ b/xml/src/main/scala/fs2/data/xml/xpath/internals/XmlQueryPipe.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/main/scala/fs2/data/xml/xpath/package.scala b/xml/src/main/scala/fs2/data/xml/xpath/package.scala index adc88ef6e..d97e9a671 100644 --- a/xml/src/main/scala/fs2/data/xml/xpath/package.scala +++ b/xml/src/main/scala/fs2/data/xml/xpath/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/test/scala/fs2/data/xml/EventParserTest.scala b/xml/src/test/scala/fs2/data/xml/EventParserTest.scala index d69672732..8a183f201 100644 --- a/xml/src/test/scala/fs2/data/xml/EventParserTest.scala +++ b/xml/src/test/scala/fs2/data/xml/EventParserTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/test/scala/fs2/data/xml/NormalizationTest.scala b/xml/src/test/scala/fs2/data/xml/NormalizationTest.scala index 2caa32642..0a6215dfd 100644 --- a/xml/src/test/scala/fs2/data/xml/NormalizationTest.scala +++ b/xml/src/test/scala/fs2/data/xml/NormalizationTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/test/scala/fs2/data/xml/XmlEventShowTest.scala b/xml/src/test/scala/fs2/data/xml/XmlEventShowTest.scala index cda9cfa6a..8430550df 100644 --- a/xml/src/test/scala/fs2/data/xml/XmlEventShowTest.scala +++ b/xml/src/test/scala/fs2/data/xml/XmlEventShowTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/test/scala/fs2/data/xml/XmlExceptionSpec.scala b/xml/src/test/scala/fs2/data/xml/XmlExceptionSpec.scala index cc47cf5de..ce613db19 100644 --- a/xml/src/test/scala/fs2/data/xml/XmlExceptionSpec.scala +++ b/xml/src/test/scala/fs2/data/xml/XmlExceptionSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/test/scala/fs2/data/xml/XmlRenderTest.scala b/xml/src/test/scala/fs2/data/xml/XmlRenderTest.scala index 934b8495e..b6ac15c9b 100644 --- a/xml/src/test/scala/fs2/data/xml/XmlRenderTest.scala +++ b/xml/src/test/scala/fs2/data/xml/XmlRenderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/test/scala/fs2/data/xml/dom/EventifierSpec.scala b/xml/src/test/scala/fs2/data/xml/dom/EventifierSpec.scala index 831f4ad61..d3332bde8 100644 --- a/xml/src/test/scala/fs2/data/xml/dom/EventifierSpec.scala +++ b/xml/src/test/scala/fs2/data/xml/dom/EventifierSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/xml/src/test/scala/fs2/data/xml/xpath/QueryPipeSpec.scala b/xml/src/test/scala/fs2/data/xml/xpath/QueryPipeSpec.scala index fdb8c22b3..e461359c4 100644 --- a/xml/src/test/scala/fs2/data/xml/xpath/QueryPipeSpec.scala +++ b/xml/src/test/scala/fs2/data/xml/xpath/QueryPipeSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 Lucas Satabin + * Copyright 2024 fs2-data Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.