Browse Source

Set copyright year to 2018

Benoit Blanchon 8 years ago
parent
commit
5c33fd4b94
100 changed files with 100 additions and 100 deletions
  1. 1 1
      ArduinoJson.h
  2. 1 1
      CMakeLists.txt
  3. 1 1
      LICENSE.md
  4. 1 1
      examples/JsonConfigFile/JsonConfigFile.ino
  5. 1 1
      examples/JsonGeneratorExample/JsonGeneratorExample.ino
  6. 1 1
      examples/JsonHttpClient/JsonHttpClient.ino
  7. 1 1
      examples/JsonParserExample/JsonParserExample.ino
  8. 1 1
      examples/JsonServer/JsonServer.ino
  9. 1 1
      examples/JsonUdpBeacon/JsonUdpBeacon.ino
  10. 1 1
      examples/ProgmemExample/ProgmemExample.ino
  11. 1 1
      examples/StringExample/StringExample.ino
  12. 1 1
      src/ArduinoJson.h
  13. 1 1
      src/ArduinoJson.hpp
  14. 1 1
      src/ArduinoJson/Configuration.hpp
  15. 1 1
      src/ArduinoJson/Data/Encoding.hpp
  16. 1 1
      src/ArduinoJson/Data/JsonBufferAllocated.hpp
  17. 1 1
      src/ArduinoJson/Data/JsonFloat.hpp
  18. 1 1
      src/ArduinoJson/Data/JsonInteger.hpp
  19. 1 1
      src/ArduinoJson/Data/JsonVariantAs.hpp
  20. 1 1
      src/ArduinoJson/Data/JsonVariantContent.hpp
  21. 1 1
      src/ArduinoJson/Data/JsonVariantDefault.hpp
  22. 1 1
      src/ArduinoJson/Data/JsonVariantType.hpp
  23. 1 1
      src/ArduinoJson/Data/List.hpp
  24. 1 1
      src/ArduinoJson/Data/ListConstIterator.hpp
  25. 1 1
      src/ArduinoJson/Data/ListIterator.hpp
  26. 1 1
      src/ArduinoJson/Data/ListNode.hpp
  27. 1 1
      src/ArduinoJson/Data/NonCopyable.hpp
  28. 1 1
      src/ArduinoJson/Data/ReferenceType.hpp
  29. 1 1
      src/ArduinoJson/Data/ValueSetter.hpp
  30. 1 1
      src/ArduinoJson/Deserialization/Comments.hpp
  31. 1 1
      src/ArduinoJson/Deserialization/JsonParser.hpp
  32. 1 1
      src/ArduinoJson/Deserialization/JsonParserImpl.hpp
  33. 1 1
      src/ArduinoJson/Deserialization/StringWriter.hpp
  34. 1 1
      src/ArduinoJson/DynamicJsonBuffer.hpp
  35. 1 1
      src/ArduinoJson/JsonArray.hpp
  36. 1 1
      src/ArduinoJson/JsonArrayImpl.hpp
  37. 1 1
      src/ArduinoJson/JsonArraySubscript.hpp
  38. 1 1
      src/ArduinoJson/JsonBuffer.hpp
  39. 1 1
      src/ArduinoJson/JsonBufferBase.hpp
  40. 1 1
      src/ArduinoJson/JsonBufferImpl.hpp
  41. 1 1
      src/ArduinoJson/JsonObject.hpp
  42. 1 1
      src/ArduinoJson/JsonObjectImpl.hpp
  43. 1 1
      src/ArduinoJson/JsonObjectSubscript.hpp
  44. 1 1
      src/ArduinoJson/JsonPair.hpp
  45. 1 1
      src/ArduinoJson/JsonVariant.hpp
  46. 1 1
      src/ArduinoJson/JsonVariantBase.hpp
  47. 1 1
      src/ArduinoJson/JsonVariantCasts.hpp
  48. 1 1
      src/ArduinoJson/JsonVariantComparisons.hpp
  49. 1 1
      src/ArduinoJson/JsonVariantImpl.hpp
  50. 1 1
      src/ArduinoJson/JsonVariantOr.hpp
  51. 1 1
      src/ArduinoJson/JsonVariantSubscripts.hpp
  52. 1 1
      src/ArduinoJson/Polyfills/attributes.hpp
  53. 1 1
      src/ArduinoJson/Polyfills/ctype.hpp
  54. 1 1
      src/ArduinoJson/Polyfills/isFloat.hpp
  55. 1 1
      src/ArduinoJson/Polyfills/isInteger.hpp
  56. 1 1
      src/ArduinoJson/Polyfills/math.hpp
  57. 1 1
      src/ArduinoJson/Polyfills/parseFloat.hpp
  58. 1 1
      src/ArduinoJson/Polyfills/parseInteger.hpp
  59. 1 1
      src/ArduinoJson/RawJson.hpp
  60. 1 1
      src/ArduinoJson/Serialization/DummyPrint.hpp
  61. 1 1
      src/ArduinoJson/Serialization/DynamicStringBuilder.hpp
  62. 1 1
      src/ArduinoJson/Serialization/FloatParts.hpp
  63. 1 1
      src/ArduinoJson/Serialization/IndentedPrint.hpp
  64. 1 1
      src/ArduinoJson/Serialization/JsonPrintable.hpp
  65. 1 1
      src/ArduinoJson/Serialization/JsonSerializer.hpp
  66. 1 1
      src/ArduinoJson/Serialization/JsonSerializerImpl.hpp
  67. 1 1
      src/ArduinoJson/Serialization/JsonWriter.hpp
  68. 1 1
      src/ArduinoJson/Serialization/Prettyfier.hpp
  69. 1 1
      src/ArduinoJson/Serialization/StaticStringBuilder.hpp
  70. 1 1
      src/ArduinoJson/Serialization/StreamPrintAdapter.hpp
  71. 1 1
      src/ArduinoJson/StaticJsonBuffer.hpp
  72. 1 1
      src/ArduinoJson/StringTraits/ArduinoStream.hpp
  73. 1 1
      src/ArduinoJson/StringTraits/CharPointer.hpp
  74. 1 1
      src/ArduinoJson/StringTraits/FlashString.hpp
  75. 1 1
      src/ArduinoJson/StringTraits/StdStream.hpp
  76. 1 1
      src/ArduinoJson/StringTraits/StdString.hpp
  77. 1 1
      src/ArduinoJson/StringTraits/StringTraits.hpp
  78. 1 1
      src/ArduinoJson/TypeTraits/EnableIf.hpp
  79. 1 1
      src/ArduinoJson/TypeTraits/FloatTraits.hpp
  80. 1 1
      src/ArduinoJson/TypeTraits/IsArray.hpp
  81. 1 1
      src/ArduinoJson/TypeTraits/IsBaseOf.hpp
  82. 1 1
      src/ArduinoJson/TypeTraits/IsChar.hpp
  83. 1 1
      src/ArduinoJson/TypeTraits/IsConst.hpp
  84. 1 1
      src/ArduinoJson/TypeTraits/IsFloatingPoint.hpp
  85. 1 1
      src/ArduinoJson/TypeTraits/IsIntegral.hpp
  86. 1 1
      src/ArduinoJson/TypeTraits/IsSame.hpp
  87. 1 1
      src/ArduinoJson/TypeTraits/IsSignedIntegral.hpp
  88. 1 1
      src/ArduinoJson/TypeTraits/IsUnsignedIntegral.hpp
  89. 1 1
      src/ArduinoJson/TypeTraits/IsVariant.hpp
  90. 1 1
      src/ArduinoJson/TypeTraits/RemoveConst.hpp
  91. 1 1
      src/ArduinoJson/TypeTraits/RemoveReference.hpp
  92. 1 1
      test/CMakeLists.txt
  93. 1 1
      test/DynamicJsonBuffer/CMakeLists.txt
  94. 1 1
      test/DynamicJsonBuffer/alloc.cpp
  95. 1 1
      test/DynamicJsonBuffer/createArray.cpp
  96. 1 1
      test/DynamicJsonBuffer/createObject.cpp
  97. 1 1
      test/DynamicJsonBuffer/no_memory.cpp
  98. 1 1
      test/DynamicJsonBuffer/size.cpp
  99. 1 1
      test/DynamicJsonBuffer/startString.cpp
  100. 1 1
      test/DynamicJsonBuffer/strdup.cpp

+ 1 - 1
ArduinoJson.h

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #include "src/ArduinoJson.h"

+ 1 - 1
CMakeLists.txt

@@ -1,5 +1,5 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2017
+# Copyright Benoit Blanchon 2014-2018
 # MIT License
 
 cmake_minimum_required(VERSION 3.0)

+ 1 - 1
LICENSE.md

@@ -1,7 +1,7 @@
 The MIT License (MIT)
 ---------------------
 
-Copyright © 2014-2017 Benoit BLANCHON
+Copyright © 2014-2018 Benoit BLANCHON
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 

+ 1 - 1
examples/JsonConfigFile/JsonConfigFile.ino

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 //
 // This example shows how to store your project configuration in a file.

+ 1 - 1
examples/JsonGeneratorExample/JsonGeneratorExample.ino

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 //
 // This example shows how to generate a JSON document with ArduinoJson.

+ 1 - 1
examples/JsonHttpClient/JsonHttpClient.ino

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 //
 // This example shows how to parse a JSON document in an HTTP response.

+ 1 - 1
examples/JsonParserExample/JsonParserExample.ino

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 //
 // This example shows how to deserialize a JSON document with ArduinoJson.

+ 1 - 1
examples/JsonServer/JsonServer.ino

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 //
 // This example shows how to implement an HTTP server that sends JSON document

+ 1 - 1
examples/JsonUdpBeacon/JsonUdpBeacon.ino

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 //
 // This example shows how to send a JSON document to a UDP socket.

+ 1 - 1
examples/ProgmemExample/ProgmemExample.ino

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 //
 // This example shows the different ways you can use Flash strings with

+ 1 - 1
examples/StringExample/StringExample.ino

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 //
 // This example shows the different ways you can use String with ArduinoJson.

+ 1 - 1
src/ArduinoJson.h

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Configuration.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/Encoding.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/JsonBufferAllocated.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/JsonFloat.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/JsonInteger.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/JsonVariantAs.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/JsonVariantContent.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/JsonVariantDefault.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/JsonVariantType.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/List.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/ListConstIterator.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/ListIterator.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/ListNode.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/NonCopyable.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/ReferenceType.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Data/ValueSetter.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Deserialization/Comments.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Deserialization/JsonParser.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Deserialization/JsonParserImpl.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Deserialization/StringWriter.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/DynamicJsonBuffer.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonArray.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonArrayImpl.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonArraySubscript.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonBuffer.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonBufferBase.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonBufferImpl.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonObject.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonObjectImpl.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonObjectSubscript.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonPair.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonVariant.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonVariantBase.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonVariantCasts.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonVariantComparisons.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonVariantImpl.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonVariantOr.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/JsonVariantSubscripts.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Polyfills/attributes.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Polyfills/ctype.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Polyfills/isFloat.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Polyfills/isInteger.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Polyfills/math.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Polyfills/parseFloat.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Polyfills/parseInteger.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/RawJson.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/DummyPrint.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/DynamicStringBuilder.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/FloatParts.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/IndentedPrint.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/JsonPrintable.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/JsonSerializer.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/JsonSerializerImpl.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/JsonWriter.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/Prettyfier.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/StaticStringBuilder.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/Serialization/StreamPrintAdapter.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/StaticJsonBuffer.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/StringTraits/ArduinoStream.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/StringTraits/CharPointer.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/StringTraits/FlashString.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/StringTraits/StdStream.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/StringTraits/StdString.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/StringTraits/StringTraits.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/EnableIf.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/FloatTraits.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsArray.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsBaseOf.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsChar.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsConst.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsFloatingPoint.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsIntegral.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsSame.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsSignedIntegral.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsUnsignedIntegral.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/IsVariant.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/RemoveConst.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
src/ArduinoJson/TypeTraits/RemoveReference.hpp

@@ -1,5 +1,5 @@
 // ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2017
+// Copyright Benoit Blanchon 2014-2018
 // MIT License
 
 #pragma once

+ 1 - 1
test/CMakeLists.txt

@@ -1,5 +1,5 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2017
+# Copyright Benoit Blanchon 2014-2018
 # MIT License
 
 if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")

+ 1 - 1
test/DynamicJsonBuffer/CMakeLists.txt

@@ -1,5 +1,5 @@
 # ArduinoJson - arduinojson.org
-# Copyright Benoit Blanchon 2014-2017
+# Copyright Benoit Blanchon 2014-2018
 # MIT License
 
 add_executable(DynamicJsonBufferTests 

+ 1 - 1
test/DynamicJsonBuffer/alloc.cpp

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

+ 1 - 1
test/DynamicJsonBuffer/createArray.cpp

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

+ 1 - 1
test/DynamicJsonBuffer/createObject.cpp

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

+ 1 - 1
test/DynamicJsonBuffer/no_memory.cpp

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

+ 1 - 1
test/DynamicJsonBuffer/size.cpp

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

+ 1 - 1
test/DynamicJsonBuffer/startString.cpp

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

+ 1 - 1
test/DynamicJsonBuffer/strdup.cpp

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

Some files were not shown because too many files changed in this diff