]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Rewrite Copyright Date Ranges from `-present` to `-2022`
authorW. Felix Handte <w@felixhandte.com>
Tue, 20 Dec 2022 17:44:56 +0000 (12:44 -0500)
committerW. Felix Handte <w@felixhandte.com>
Tue, 20 Dec 2022 17:44:56 +0000 (12:44 -0500)
Apparently it's better. Somehow.

```
for f in $(find . \( -path ./.git -o -path ./tests/fuzz/corpora -o -path ./tests/regression/data-cache -o -path ./tests/regression/cache \) -prune -o -type f); do echo $f; sed -i 's/\-present/-2022/' $f; done

g co HEAD -- build/meson/
```

80 files changed:
LICENSE
Makefile
build/VS2010/libzstd-dll/libzstd-dll.rc
build/VS2010/zstd/zstd.rc
build/cmake/CMakeLists.txt
build/cmake/contrib/CMakeLists.txt
build/cmake/contrib/gen_html/CMakeLists.txt
build/cmake/contrib/pzstd/CMakeLists.txt
build/cmake/lib/CMakeLists.txt
build/cmake/programs/CMakeLists.txt
build/cmake/tests/CMakeLists.txt
build/single_file_libs/zstd-in.c
build/single_file_libs/zstddeclib-in.c
contrib/diagnose_corruption/Makefile
contrib/diagnose_corruption/check_flipped_bits.c
contrib/freestanding_lib/freestanding.py
contrib/gen_html/Makefile
contrib/gen_html/gen_html.cpp
contrib/largeNbDicts/Makefile
contrib/largeNbDicts/largeNbDicts.c
contrib/linux-kernel/test/include/linux/compiler.h
contrib/linux-kernel/test/include/linux/errno.h
contrib/linux-kernel/test/include/linux/kernel.h
contrib/linux-kernel/test/include/linux/limits.h
contrib/linux-kernel/test/include/linux/math64.h
contrib/linux-kernel/test/include/linux/module.h
contrib/linux-kernel/test/include/linux/printk.h
contrib/linux-kernel/test/include/linux/stddef.h
contrib/linux-kernel/test/include/linux/swab.h
contrib/linux-kernel/test/include/linux/types.h
contrib/match_finders/zstd_edist.c
contrib/match_finders/zstd_edist.h
contrib/pzstd/ErrorHolder.h
contrib/pzstd/Logging.h
contrib/pzstd/Makefile
contrib/pzstd/Options.cpp
contrib/pzstd/Options.h
contrib/pzstd/Pzstd.cpp
contrib/pzstd/Pzstd.h
contrib/pzstd/SkippableFrame.cpp
contrib/pzstd/SkippableFrame.h
contrib/pzstd/main.cpp
contrib/pzstd/test/OptionsTest.cpp
contrib/pzstd/test/PzstdTest.cpp
contrib/pzstd/test/RoundTrip.h
contrib/pzstd/test/RoundTripTest.cpp
contrib/pzstd/utils/Buffer.h
contrib/pzstd/utils/FileSystem.h
contrib/pzstd/utils/Likely.h
contrib/pzstd/utils/Portability.h
contrib/pzstd/utils/Range.h
contrib/pzstd/utils/ResourcePool.h
contrib/pzstd/utils/ScopeGuard.h
contrib/pzstd/utils/ThreadPool.h
contrib/pzstd/utils/WorkQueue.h
contrib/pzstd/utils/test/BufferTest.cpp
contrib/pzstd/utils/test/RangeTest.cpp
contrib/pzstd/utils/test/ResourcePoolTest.cpp
contrib/pzstd/utils/test/ScopeGuardTest.cpp
contrib/pzstd/utils/test/ThreadPoolTest.cpp
contrib/pzstd/utils/test/WorkQueueTest.cpp
contrib/recovery/Makefile
contrib/recovery/recover_directory.c
contrib/seekable_format/examples/Makefile
contrib/seekable_format/examples/parallel_compression.c
contrib/seekable_format/examples/parallel_processing.c
contrib/seekable_format/examples/seekable_compression.c
contrib/seekable_format/examples/seekable_decompression.c
contrib/seekable_format/examples/seekable_decompression_mem.c
contrib/seekable_format/tests/Makefile
contrib/seekable_format/zstd_seekable_compression_format.md
contrib/seekable_format/zstdseek_compress.c
contrib/seekable_format/zstdseek_decompress.c
contrib/seqBench/Makefile
doc/zstd_compression_format.md
programs/windres/zstd.rc
zlibWrapper/examples/zwrapbench.c
zlibWrapper/gzcompatibility.h
zlibWrapper/zstd_zlibwrapper.c
zlibWrapper/zstd_zlibwrapper.h

diff --git a/LICENSE b/LICENSE
index 493d0db229d6ec19c55b4701e0651c701aba9d09..d2bbd709b1d08e9e41e0a3b7e9f73a7c237f15e0 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -2,7 +2,7 @@ BSD License
 
 For Zstandard software
 
-Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates. All rights reserved.
+Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without modification,
 are permitted provided that the following conditions are met:
index 65d2130611e0cd825529a004bbb9dcf15f080629..641feb8693479bbcba6661d9a4f34d812169cd44 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2015-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2015-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 05c8fbd4102dad30f62c7df8a3a2ae5864fca967..80d3a306cfb55c36ab74dafd0fc542bc75d500ac 100644 (file)
@@ -36,7 +36,7 @@ BEGIN
             VALUE "FileDescription", "Zstandard - Fast and efficient compression algorithm"
             VALUE "FileVersion", ZSTD_VERSION_STRING
             VALUE "InternalName", "libzstd.dll"
-            VALUE "LegalCopyright", "Copyright (c) 2013-present, Meta Platforms, Inc."
+            VALUE "LegalCopyright", "Copyright (c) 2013-2022, Meta Platforms, Inc."
             VALUE "OriginalFilename", "libzstd.dll"
             VALUE "ProductName", "Zstandard"
             VALUE "ProductVersion", ZSTD_VERSION_STRING
index c1df78a1393077f8b9c3902e3540280572d5fa22..57b150d92bb5df763a03896c0f1991fb1ce7623c 100644 (file)
@@ -36,7 +36,7 @@ BEGIN
             VALUE "FileDescription", "Zstandard - Fast and efficient compression algorithm"
             VALUE "FileVersion", ZSTD_VERSION_STRING
             VALUE "InternalName", "zstd.exe"
-            VALUE "LegalCopyright", "Copyright (c) 2013-present, Meta Platforms, Inc."
+            VALUE "LegalCopyright", "Copyright (c) 2013-2022, Meta Platforms, Inc."
             VALUE "OriginalFilename", "zstd.exe"
             VALUE "ProductName", "Zstandard"
             VALUE "ProductVersion", ZSTD_VERSION_STRING
index 193f60d7756113f4db362677ff6b65c78e5625d6..c41861ad01498051ac24aa7f46a1d27a29cd5ef5 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2016-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2016-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 3f253cf226a6f41ba3f0ce881c5dd6927dbbc06b..c4684007f6368baec1c05cf595f4255179e29c86 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2016-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2016-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 96975421be1a9ad4b14e590d3840eda22c6152fd..1f945a477ef88050afd9f0bb52f0de65acebdc95 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2015-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2015-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index e6f99c7d23ecdb35e5113e09e7f1cbf1f786c897..fa419a6cdb156f8f29f709ea72bca58238cd1264 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 9f1e7db4901556bf580c4493bb12d98bb3462b8a..13f21dafd72c84f57475f9d934de68c53be3a56c 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2015-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2015-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 650b8c571b593d39cdf2bd5cab9b727bc68655bb..b94dad3e72b0e0b8c91f13587078755e9859374d 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2015-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2015-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 6db8dd72902443ee4fbdd46b2d7799fb95bd1e3c..7f6477abce862c567ec124500799eaeedac9be56 100644 (file)
@@ -1,6 +1,6 @@
 # ################################################################
 # zstd - Makefile
-# Copyright (C) Yann Collet 2014-present
+# Copyright (C) Yann Collet 2014-2022
 # All rights reserved.
 #
 # BSD license
index 89296179d92a53e24ff5ee1a0c401a9e1337752c..c22b8cd25d43e38a5043043e76f337820cb5e353 100644 (file)
@@ -8,7 +8,7 @@
  * \endcode
  */
 /*
- * Copyright (c) 2016-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 9e7d36ec947fcc3fb8f09b836fa7b08de4516dd6..218e5a698bf9bcb1c6c05ba921d233e7f90deef1 100644 (file)
@@ -8,7 +8,7 @@
  * \endcode
  */
 /*
- * Copyright (c) 2016-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index ff17dd894c1c0c99578440e1041396a1f6de257d..7fee63284e979e823f9b4e2b81746d603c1bea5d 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2019-present, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2019-2022, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 342d9baba67419a1fb926dcf0163f658d0876c2c..e76e99d72397df2356f3fd13bc648d5bce39cf70 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2019-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 33a1ead38c4cdf516e1a04171d1ead46b688d221..6a26d1d14795dad04cd0e7981e3ef9a751920017 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 # ################################################################
-# Copyright (c) 2021-present, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2021-2022, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index ebb13fa0e863906657d4750c64b7f8592ad164ff..64e1e2cac88b73e3bd7d7ec09a18d5d312303e65 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 9ee807c22345e0742574f065b989269eaab557ae..83c5994e65a6986fd0e025c561515a22cf46f1c6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Przemyslaw Skibinski, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Przemyslaw Skibinski, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 611ec8e632f0149e4ba408af68e1bebeb9832cf6..2f514e406a71e4a166d4e30e97f4d627e179e48a 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2018-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2018-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index ad0522918f824b2e04f30cace098a51c2eacc6dc..13216035a2e5fef464be85e7299b0a3448163f83 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2018-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index f882850c1f7546f9eb66105f6a70102da479f480..859d5d860545965f089a16dcda5c7dbe36bcb4ad 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index fe643adf5a89bfedd4b4ebfc3883ceab3f4bcfa4..c55da480cf555d006b143d9bb6cc7501bff1a5b3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 0543b4ad3224e621fdb7ece7f4d21b7ad908be87..f3c42d440d9dda1fb5ee289d8f6d86021c3d5ac1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index e9a818ac4d39591cdb224491041224b84a7e5b6c..da9f5d5286af7c2bfdf791bc7ed15a1e166e516c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index f8821528bfb34f228d812d775bf383b2cb708e21..f834c0c411f53b9c9baf7440c6d6e4459a60325b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 0821f296c8df221cab6e8f29d498adaf6873dbbc..77285dae65a01c0a650b8d60b79fcd30cfd8b83f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 1989aeb5333e5335d6575fe9b670f6a5149d7527..ca84b2868c30f68304a6662b03727965292e559a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 94f1f36eed8a1f899b4b18ead5cba767e2955e45..8760df1c88c29bb05d15b633bc1bba6cbccf1e10 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index aeeb84c03896943f206713b2888710077cdf61ea..d6f48db66411f78e31920a033add895e06555e4b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 917fb428f50c2f6e5513ec6b81992bf462cff013..8610dcaedc72e857ff6eca888a82549834b17ee0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 73a7f6d77e5b710ed9d4b5ebccf53754bb052845..ab89145addf5b7b42dd9e64f60266121dc71f76c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index b60a5dc05776bf0e0f8aa071054653fb68d2ed28..328a02ccc56ada43afff41f3292466b343c46f98 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index d144e0fccf880bf25a92b9611701f374084f2d65..0b0456b321c090bb72abf358f3504625af375dc1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 652eae82479dc8dcc7a26b6396c88aeeeaa92e82..2c797b927af02912e20a42ff64c1dee1ca8d0bd0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 8604bac0c9f530202281310f14e2daad03d72b9b..d6bd1905042ce9c774c4fdc7cdf44afbd11a3f66 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index c278b1977b3bec3b3924199dcbf846ca46d03c30..2462736aeda0fe718c1dd0070120d9aba6566a66 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 5bf6a64927a1bcecac57df695752b919b4129c1a..1220984dc7cd324b27381a699c33a6e510f9869f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 794d2c1800f64ec279c82bd1d348be20406a733a..5f90e5a8ca49a6238dcc04b61b50036050279cc4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 46c74cc3fc1e9e6cfcdd3f1e40d083468c6644df..5c47f4998967d5cfb0ddcd757891db76a19f3641 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 058667a06e6310ac0b7c184cba52d95397996ae9..c866da4ce1f1d7aaafc66c93e010ae6d94209bda 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 389f5304faa4b230a1842c62502b0c835631e191..78b859173175538241013b02539554c3415f0c97 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index dea12fac70ee0b1fb6e034c21c87bc845be53e34..bc8f8caf638c294c667e864d54a03d074b7de6f3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index dd9a0113ba9da89e4b1b9380c599bbe12fcfd70f..1ac50b803bbda52db36684eae94efb079014258c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 60c03e8c3a5a8b46daa4831b3658163119b1797d..5aa329aec7e15453d47874f3e7bf0c94cd4fe5ba 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 4990501ae037cdc63e13987a411509055f9b5474..2834e9a1ed19f6d691cb95ff29f011dcfce810c7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index af0e8149e8b96ba7e0c0d1a8006160d15bfaf0fb..22c59f4fb1cf1e0e3289e5d69b58a2caf14f58df 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 5a640d60b851d7f14573c3fe5769189aa4d09053..3b1bbd6ecfcf35184d169d7dab59b2738774579e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 2615c4e00fe264229e1a875b3db24dec3999074d..a33813f91eb103c5be26df42242ea937914d3a65 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index ba01c840d61eaa6e6e3d89481041538adb24ec19..cc5a363ae9eacbcd1f6050d6c8cfd40782a7db3e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 9410d5b24998af228da25036aedd979ffcd51273..55db32383bad59d2cb5fd4063da4e209fb2e89a5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 6e217eaa1e499464b0e10fcf1fe79467dfae4ef9..33b6f4bce40b3934d42073bb250273bf47439354 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 9bdc32ff2d65e45ffba01ed17e616db8b6ef86c0..b0dce8eedbcb6dbee77888d545c7e078b253ac0e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 3ae81da887be1432dc4bbf0d48bbe755a80bc2e6..83f1f9d6a35bdaa0e8392a09082b515c22926bee 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 50eed836c3878640df95d07ca821fc2c6146af36..658508473b60948223cb4bac3300c1bba551cacc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index a0bb58c856fa9dcb16e6b8753740c4d1e83d4e0e..d2818f83bf3d2e23bb791096162817c35c579acd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index c1a67a57e18d7f9323c3b60afdc0c49b07c03be0..029e5b1f7fc82ecc576c14f8ba0f586d0d5132be 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index bc2a8e73db16fb0aac1def05694d7b73612eeb66..bd8c2f31d4639f057303f1036be6232b6e360e92 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 542c265ec2d2c6778c3c31eddbf311d33b868517..b4f9329f23a5d1c680dac1a8b9ff19feb68f0027 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index b5e0d00cb72a527e7dd7410bf99dec6262b2e38a..c7b2017d89f3a0f8e18efb37223cf600e0a37823 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index b4656d7bd5341e3b343fcdc15c52971a262395ce..df64bb56f5835b5b1cf8aa1dc03efda534f5d795 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 70f923e5dfa81109b3d6dc26be7c0e3ffaf05be4..4973729b68ab35ec71c1a677d94e4ebcc7940746 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index fa500af193120cde8dfdcf5e627d22e3b5fa8699..aa46e85c355179416fed26ed480d307f3177009b 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2019-present, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2019-2022, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 749ca7df6f37b30d6a6101036e61314a3e9cc8e0..3d1104c292de8fea0f1dc6408ab9b1a96e883495 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 07ec190707de6b4de82d84d65e72068b9713d8d1..3177b3a02d7039cffcb70113bb8db02e99968dd0 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 04347138ba2e78139318ad1f95a45e4cb61c072a..50358eccad2a6fce97e85f94e1d158cf56f8cda5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 8f3096aa2f7fe275a7aac373a005f052adbeba04..e6e9d9688153bd28815af9014e61dd4117699c27 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 9e1588a3ddda2ae17e37f80f7d9489fbce0267c2..9b1205e3b615aa739267d039c6761edab4565ba0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 19c9970419df09098cf3839aeeae4f3f69bb283f..154c3bd510abe9f095b685a5e1e05eabe50e1d89 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index f1bdb9d33039adbeef3c568da3761d566eaf1448..1ecaa766c01f21283b6ef786e1ba9e0bc19833ef 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index ab5dda6968294228ff41c1e7ff3f1c85632941d1..64394519bdeef6273c011e2c630495625f28fc28 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 8cb06af791f3e439320ee55b984cc5446d3f7399..f86735c1501fd183d89d8bdc151bb6b82f13c856 100644 (file)
@@ -2,7 +2,7 @@
 
 ### Notices
 
-Copyright (c) 2017-present Meta Platforms, Inc. and affiliates.
+Copyright (c) 2017-2022 Meta Platforms, Inc. and affiliates.
 
 Permission is granted to copy and distribute this document
 for any purpose and without charge,
index 02f19a129d005a4bcfb40f34a7f9ab4de18de578..f5e7d485460bbc127ca884ec1257516965ca1959 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 73c54271da1981ead9dfe1866dff1bc5717cc34b..43d59a781d886d20bf775a16ec4c3ef9ee81bb8a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-present, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2017-2022, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 63c872097aeae17a17488f8aa12bddb71dd46fa3..6e5f735f3d7993e037bf66c73c493e90785e7226 100644 (file)
@@ -1,5 +1,5 @@
 # ################################################################
-# Copyright (c) 2018-present, Yann Collet, Meta Platforms, Inc. and affiliates.
+# Copyright (c) 2018-2022, Yann Collet, Meta Platforms, Inc. and affiliates.
 # All rights reserved.
 #
 # This source code is licensed under both the BSD-style license (found in the
index 4b2330994453bfab772633279b7b2b0db5c449c2..1eff9f684ed6d7a9cd1cf2a2d5aea835581c91d6 100644 (file)
@@ -3,7 +3,7 @@ Zstandard Compression Format
 
 ### Notices
 
-Copyright (c) 2016-present Yann Collet, Meta Platforms, Inc. and affiliates.
+Copyright (c) 2016-2022 Yann Collet, Meta Platforms, Inc. and affiliates.
 
 Permission is granted to copy and distribute this document
 for any purpose and without charge,
index 76de608d8571f74e82e3e937689ff59e39d046c3..56e92e8d880e2dff553c31b2f784b3d5de61be18 100644 (file)
@@ -36,7 +36,7 @@ BEGIN
             VALUE "FileDescription", "Zstandard - Fast and efficient compression algorithm"
             VALUE "FileVersion", ZSTD_VERSION_STRING
             VALUE "InternalName", "zstd.exe"
-            VALUE "LegalCopyright", "Copyright (c) 2013-present, Yann Collet, Meta Platforms, Inc. and affiliates."
+            VALUE "LegalCopyright", "Copyright (c) 2013-2022, Yann Collet, Meta Platforms, Inc. and affiliates."
             VALUE "OriginalFilename", "zstd.exe"
             VALUE "ProductName", "Zstandard"
             VALUE "ProductVersion", ZSTD_VERSION_STRING
index 0ca4c3595c3453aa1373167794cf27bd18e1de81..7512f8e97fc48ea714764e1f14fca57ad8efde6f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Przemyslaw Skibinski, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 68d29090c8f6fe1021cf651abd3ce4f1dc10fab8..fffa4bbc9673f96340644453d3d880384e493301 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Przemyslaw Skibinski, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index e001629bf5faebe634a5734500812e3d98f1d0f6..fdddbb774c821a2493141a82045adeee6e3ea791 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Przemyslaw Skibinski, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
index 2a34763e4a097079664fa62684470252dabdf14f..3ec483ba92eb019c2150eaca524058e677f1614b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Meta Platforms, Inc. and affiliates.
+ * Copyright (c) 2016-2022, Przemyslaw Skibinski, Yann Collet, Meta Platforms, Inc. and affiliates.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the