ソースを参照

Update copyright notice

Benoit Blanchon 2 年 前
コミット
8340b36170
81 ファイル変更90 行追加90 行削除
  1. 2 2
      test/CMakeLists.txt
  2. 2 2
      test/DynamicJsonBuffer/CMakeLists.txt
  3. 1 1
      test/DynamicJsonBuffer/alloc.cpp
  4. 1 1
      test/DynamicJsonBuffer/createArray.cpp
  5. 1 1
      test/DynamicJsonBuffer/createObject.cpp
  6. 1 1
      test/DynamicJsonBuffer/no_memory.cpp
  7. 1 1
      test/DynamicJsonBuffer/size.cpp
  8. 1 1
      test/DynamicJsonBuffer/startString.cpp
  9. 2 2
      test/IntegrationTests/CMakeLists.txt
  10. 1 1
      test/IntegrationTests/gbathree.cpp
  11. 1 1
      test/IntegrationTests/round_trip.cpp
  12. 2 2
      test/JsonArray/CMakeLists.txt
  13. 1 1
      test/JsonArray/add.cpp
  14. 1 1
      test/JsonArray/basics.cpp
  15. 1 1
      test/JsonArray/copyFrom.cpp
  16. 1 1
      test/JsonArray/copyTo.cpp
  17. 1 1
      test/JsonArray/invalid.cpp
  18. 1 1
      test/JsonArray/iterator.cpp
  19. 1 1
      test/JsonArray/prettyPrintTo.cpp
  20. 1 1
      test/JsonArray/printTo.cpp
  21. 1 1
      test/JsonArray/remove.cpp
  22. 1 1
      test/JsonArray/set.cpp
  23. 1 1
      test/JsonArray/size.cpp
  24. 1 1
      test/JsonArray/subscript.cpp
  25. 1 1
      test/JsonBuffer/CMakeLists.txt
  26. 1 1
      test/JsonBuffer/nested.cpp
  27. 1 1
      test/JsonBuffer/nestingLimit.cpp
  28. 1 1
      test/JsonBuffer/parse.cpp
  29. 1 1
      test/JsonBuffer/parseArray.cpp
  30. 1 1
      test/JsonBuffer/parseObject.cpp
  31. 1 1
      test/JsonObject/CMakeLists.txt
  32. 1 1
      test/JsonObject/basics.cpp
  33. 1 1
      test/JsonObject/containsKey.cpp
  34. 1 1
      test/JsonObject/get.cpp
  35. 1 1
      test/JsonObject/invalid.cpp
  36. 1 1
      test/JsonObject/iterator.cpp
  37. 1 1
      test/JsonObject/prettyPrintTo.cpp
  38. 1 1
      test/JsonObject/printTo.cpp
  39. 1 1
      test/JsonObject/remove.cpp
  40. 1 1
      test/JsonObject/set.cpp
  41. 1 1
      test/JsonObject/size.cpp
  42. 1 1
      test/JsonObject/subscript.cpp
  43. 2 2
      test/JsonVariant/CMakeLists.txt
  44. 1 1
      test/JsonVariant/as.cpp
  45. 1 1
      test/JsonVariant/compare.cpp
  46. 1 1
      test/JsonVariant/copy.cpp
  47. 1 1
      test/JsonVariant/is.cpp
  48. 1 1
      test/JsonVariant/or.cpp
  49. 1 1
      test/JsonVariant/printTo.cpp
  50. 1 1
      test/JsonVariant/set_get.cpp
  51. 1 1
      test/JsonVariant/subscript.cpp
  52. 1 1
      test/JsonVariant/success.cpp
  53. 1 1
      test/JsonVariant/undefined.cpp
  54. 2 2
      test/JsonWriter/CMakeLists.txt
  55. 1 1
      test/JsonWriter/writeFloat.cpp
  56. 1 1
      test/JsonWriter/writeString.cpp
  57. 2 2
      test/Misc/CMakeLists.txt
  58. 1 1
      test/Misc/FloatParts.cpp
  59. 1 1
      test/Misc/StringBuilder.cpp
  60. 1 1
      test/Misc/StringTraits.cpp
  61. 1 1
      test/Misc/TypeTraits.cpp
  62. 1 1
      test/Misc/deprecated.cpp
  63. 1 1
      test/Misc/empty.cpp
  64. 1 1
      test/Misc/std_stream.cpp
  65. 1 1
      test/Misc/std_string.cpp
  66. 1 1
      test/Misc/unsigned_char.cpp
  67. 1 1
      test/Misc/version.cpp
  68. 1 1
      test/Misc/vla.cpp
  69. 2 2
      test/Polyfills/CMakeLists.txt
  70. 1 1
      test/Polyfills/isFloat.cpp
  71. 1 1
      test/Polyfills/isInteger.cpp
  72. 1 1
      test/Polyfills/parseFloat.cpp
  73. 1 1
      test/Polyfills/parseInteger.cpp
  74. 2 2
      test/StaticJsonBuffer/CMakeLists.txt
  75. 1 1
      test/StaticJsonBuffer/alloc.cpp
  76. 1 1
      test/StaticJsonBuffer/createArray.cpp
  77. 1 1
      test/StaticJsonBuffer/createObject.cpp
  78. 1 1
      test/StaticJsonBuffer/parseArray.cpp
  79. 1 1
      test/StaticJsonBuffer/parseObject.cpp
  80. 1 1
      test/StaticJsonBuffer/size.cpp
  81. 1 1
      test/StaticJsonBuffer/startString.cpp

+ 2 - 2
test/CMakeLists.txt

@@ -1,5 +1,5 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
 if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
@@ -47,7 +47,7 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
 		add_compile_options(-Wnoexcept)
 	endif()
 
-	if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.7 AND 
+	if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.7 AND
 	   CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8)
 		# avoid false positive with GCC 4.7
 		add_compile_options(-Wno-maybe-uninitialized)

+ 2 - 2
test/DynamicJsonBuffer/CMakeLists.txt

@@ -1,8 +1,8 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
-add_executable(DynamicJsonBufferTests 
+add_executable(DynamicJsonBufferTests
 	alloc.cpp
 	createArray.cpp
 	createObject.cpp

+ 1 - 1
test/DynamicJsonBuffer/alloc.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/DynamicJsonBuffer/createArray.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/DynamicJsonBuffer/createObject.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/DynamicJsonBuffer/no_memory.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/DynamicJsonBuffer/size.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/DynamicJsonBuffer/startString.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 2 - 2
test/IntegrationTests/CMakeLists.txt

@@ -1,8 +1,8 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
-add_executable(IntegrationTests 
+add_executable(IntegrationTests
 	gbathree.cpp
 	round_trip.cpp
 )

+ 1 - 1
test/IntegrationTests/gbathree.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/IntegrationTests/round_trip.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 2 - 2
test/JsonArray/CMakeLists.txt

@@ -1,8 +1,8 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
-add_executable(JsonArrayTests 
+add_executable(JsonArrayTests
 	add.cpp
 	basics.cpp
 	copyFrom.cpp

+ 1 - 1
test/JsonArray/add.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/basics.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/copyFrom.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/copyTo.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/invalid.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/iterator.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/prettyPrintTo.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/printTo.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/remove.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/set.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/size.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonArray/subscript.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonBuffer/CMakeLists.txt

@@ -1,5 +1,5 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
 add_executable(JsonBufferTests

+ 1 - 1
test/JsonBuffer/nested.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonBuffer/nestingLimit.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonBuffer/parse.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonBuffer/parseArray.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonBuffer/parseObject.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/CMakeLists.txt

@@ -1,5 +1,5 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
 add_executable(JsonObjectTests 

+ 1 - 1
test/JsonObject/basics.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/containsKey.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/get.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/invalid.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/iterator.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/prettyPrintTo.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/printTo.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/remove.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/set.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/size.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonObject/subscript.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 2 - 2
test/JsonVariant/CMakeLists.txt

@@ -1,8 +1,8 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
-add_executable(JsonVariantTests 
+add_executable(JsonVariantTests
 	as.cpp
 	compare.cpp
 	copy.cpp

+ 1 - 1
test/JsonVariant/as.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/compare.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/copy.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/is.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/or.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/printTo.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/set_get.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/subscript.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/success.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/JsonVariant/undefined.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 2 - 2
test/JsonWriter/CMakeLists.txt

@@ -1,8 +1,8 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
-add_executable(JsonWriterTests 
+add_executable(JsonWriterTests
 	writeFloat.cpp
 	writeString.cpp
 )

+ 1 - 1
test/JsonWriter/writeFloat.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <catch.hpp>

+ 1 - 1
test/JsonWriter/writeString.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <catch.hpp>

+ 2 - 2
test/Misc/CMakeLists.txt

@@ -1,8 +1,8 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
-add_executable(MiscTests 
+add_executable(MiscTests
 	empty.cpp
 	deprecated.cpp
 	FloatParts.cpp

+ 1 - 1
test/Misc/FloatParts.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson/Serialization/FloatParts.hpp>

+ 1 - 1
test/Misc/StringBuilder.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/Misc/StringTraits.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/Misc/TypeTraits.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/Misc/deprecated.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #define ARDUINOJSON_ENABLE_DEPRECATED 1

+ 1 - 1
test/Misc/empty.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 // catch.hpp mutes several warnings, this file allows to detect them

+ 1 - 1
test/Misc/std_stream.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/Misc/std_string.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/Misc/unsigned_char.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/Misc/version.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson/version.hpp>

+ 1 - 1
test/Misc/vla.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 2 - 2
test/Polyfills/CMakeLists.txt

@@ -1,8 +1,8 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
-add_executable(PolyfillsTests 
+add_executable(PolyfillsTests
 	isFloat.cpp
 	isInteger.cpp
 	parseFloat.cpp

+ 1 - 1
test/Polyfills/isFloat.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson/Polyfills/isFloat.hpp>

+ 1 - 1
test/Polyfills/isInteger.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson/Polyfills/isInteger.hpp>

+ 1 - 1
test/Polyfills/parseFloat.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson/Polyfills/parseFloat.hpp>

+ 1 - 1
test/Polyfills/parseInteger.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <stdint.h>

+ 2 - 2
test/StaticJsonBuffer/CMakeLists.txt

@@ -1,8 +1,8 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2019
+# Copyright Benoit Blanchon 2014-2023
 # MIT License
 
-add_executable(StaticJsonBufferTests 
+add_executable(StaticJsonBufferTests
 	alloc.cpp
 	createArray.cpp
 	createObject.cpp

+ 1 - 1
test/StaticJsonBuffer/alloc.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/StaticJsonBuffer/createArray.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/StaticJsonBuffer/createObject.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/StaticJsonBuffer/parseArray.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/StaticJsonBuffer/parseObject.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/StaticJsonBuffer/size.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>

+ 1 - 1
test/StaticJsonBuffer/startString.cpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2019
+// Copyright Benoit Blanchon 2014-2023
 // MIT License
 
 #include <ArduinoJson.h>