diff --git a/ArduinoJson.h b/ArduinoJson.h index b5327564..9f78b9f1 100644 --- a/ArduinoJson.h +++ b/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" diff --git a/CMakeLists.txt b/CMakeLists.txt index ce60a187..66c565b5 100644 --- a/CMakeLists.txt +++ b/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) diff --git a/LICENSE.md b/LICENSE.md index 627b1767..247c5084 100644 --- a/LICENSE.md +++ b/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: diff --git a/examples/JsonConfigFile/JsonConfigFile.ino b/examples/JsonConfigFile/JsonConfigFile.ino index 7dafb652..ce6dca3e 100644 --- a/examples/JsonConfigFile/JsonConfigFile.ino +++ b/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. diff --git a/examples/JsonGeneratorExample/JsonGeneratorExample.ino b/examples/JsonGeneratorExample/JsonGeneratorExample.ino index 52b12cc2..fad41ef2 100644 --- a/examples/JsonGeneratorExample/JsonGeneratorExample.ino +++ b/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. diff --git a/examples/JsonHttpClient/JsonHttpClient.ino b/examples/JsonHttpClient/JsonHttpClient.ino index e5121803..6e5c05ef 100644 --- a/examples/JsonHttpClient/JsonHttpClient.ino +++ b/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. diff --git a/examples/JsonParserExample/JsonParserExample.ino b/examples/JsonParserExample/JsonParserExample.ino index 4d35cfc4..a9b3ee91 100644 --- a/examples/JsonParserExample/JsonParserExample.ino +++ b/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. diff --git a/examples/JsonServer/JsonServer.ino b/examples/JsonServer/JsonServer.ino index fccbb390..229e289a 100644 --- a/examples/JsonServer/JsonServer.ino +++ b/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 diff --git a/examples/JsonUdpBeacon/JsonUdpBeacon.ino b/examples/JsonUdpBeacon/JsonUdpBeacon.ino index 747b9030..eb9f19a6 100644 --- a/examples/JsonUdpBeacon/JsonUdpBeacon.ino +++ b/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. diff --git a/examples/ProgmemExample/ProgmemExample.ino b/examples/ProgmemExample/ProgmemExample.ino index 9cb76eaa..287c5067 100644 --- a/examples/ProgmemExample/ProgmemExample.ino +++ b/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 diff --git a/examples/StringExample/StringExample.ino b/examples/StringExample/StringExample.ino index 1f632157..d070d551 100644 --- a/examples/StringExample/StringExample.ino +++ b/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. diff --git a/src/ArduinoJson.h b/src/ArduinoJson.h index 287b0482..3782aeab 100644 --- a/src/ArduinoJson.h +++ b/src/ArduinoJson.h @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once diff --git a/src/ArduinoJson.hpp b/src/ArduinoJson.hpp index 2798f606..445a2c8a 100644 --- a/src/ArduinoJson.hpp +++ b/src/ArduinoJson.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once diff --git a/src/ArduinoJson/Configuration.hpp b/src/ArduinoJson/Configuration.hpp index 8370569c..82483adf 100644 --- a/src/ArduinoJson/Configuration.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/Encoding.hpp b/src/ArduinoJson/Data/Encoding.hpp index 39ea9d65..a0efa2c7 100644 --- a/src/ArduinoJson/Data/Encoding.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/JsonBufferAllocated.hpp b/src/ArduinoJson/Data/JsonBufferAllocated.hpp index e028c150..443aae4d 100644 --- a/src/ArduinoJson/Data/JsonBufferAllocated.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/JsonFloat.hpp b/src/ArduinoJson/Data/JsonFloat.hpp index 2e8cf9be..0ed42140 100644 --- a/src/ArduinoJson/Data/JsonFloat.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/JsonInteger.hpp b/src/ArduinoJson/Data/JsonInteger.hpp index f872f820..c8ddd00b 100644 --- a/src/ArduinoJson/Data/JsonInteger.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/JsonVariantAs.hpp b/src/ArduinoJson/Data/JsonVariantAs.hpp index fcae0fef..8f202c5e 100644 --- a/src/ArduinoJson/Data/JsonVariantAs.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/JsonVariantContent.hpp b/src/ArduinoJson/Data/JsonVariantContent.hpp index 94c2adab..c525a606 100644 --- a/src/ArduinoJson/Data/JsonVariantContent.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/JsonVariantDefault.hpp b/src/ArduinoJson/Data/JsonVariantDefault.hpp index 9b12ca03..57ecc83e 100644 --- a/src/ArduinoJson/Data/JsonVariantDefault.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/JsonVariantType.hpp b/src/ArduinoJson/Data/JsonVariantType.hpp index 49d21fdb..21f890e5 100644 --- a/src/ArduinoJson/Data/JsonVariantType.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/List.hpp b/src/ArduinoJson/Data/List.hpp index 26d8c58d..506308cc 100644 --- a/src/ArduinoJson/Data/List.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/ListConstIterator.hpp b/src/ArduinoJson/Data/ListConstIterator.hpp index e0b0752b..a6af685e 100644 --- a/src/ArduinoJson/Data/ListConstIterator.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/ListIterator.hpp b/src/ArduinoJson/Data/ListIterator.hpp index e27e3dc7..01fa287f 100644 --- a/src/ArduinoJson/Data/ListIterator.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/ListNode.hpp b/src/ArduinoJson/Data/ListNode.hpp index b4e90362..c0907120 100644 --- a/src/ArduinoJson/Data/ListNode.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/NonCopyable.hpp b/src/ArduinoJson/Data/NonCopyable.hpp index c07b04ce..73f3d8ed 100644 --- a/src/ArduinoJson/Data/NonCopyable.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/ReferenceType.hpp b/src/ArduinoJson/Data/ReferenceType.hpp index 1f2a861f..1e491172 100644 --- a/src/ArduinoJson/Data/ReferenceType.hpp +++ b/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 diff --git a/src/ArduinoJson/Data/ValueSetter.hpp b/src/ArduinoJson/Data/ValueSetter.hpp index 68db56a0..266df298 100644 --- a/src/ArduinoJson/Data/ValueSetter.hpp +++ b/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 diff --git a/src/ArduinoJson/Deserialization/Comments.hpp b/src/ArduinoJson/Deserialization/Comments.hpp index 3c04be2e..c2c48ebc 100644 --- a/src/ArduinoJson/Deserialization/Comments.hpp +++ b/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 diff --git a/src/ArduinoJson/Deserialization/JsonParser.hpp b/src/ArduinoJson/Deserialization/JsonParser.hpp index 02c9c201..bd26a15c 100644 --- a/src/ArduinoJson/Deserialization/JsonParser.hpp +++ b/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 diff --git a/src/ArduinoJson/Deserialization/JsonParserImpl.hpp b/src/ArduinoJson/Deserialization/JsonParserImpl.hpp index 56f27b5c..3921225b 100644 --- a/src/ArduinoJson/Deserialization/JsonParserImpl.hpp +++ b/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 diff --git a/src/ArduinoJson/Deserialization/StringWriter.hpp b/src/ArduinoJson/Deserialization/StringWriter.hpp index af1d8021..fd5507ea 100644 --- a/src/ArduinoJson/Deserialization/StringWriter.hpp +++ b/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 diff --git a/src/ArduinoJson/DynamicJsonBuffer.hpp b/src/ArduinoJson/DynamicJsonBuffer.hpp index da7fa839..fc8270f0 100644 --- a/src/ArduinoJson/DynamicJsonBuffer.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonArray.hpp b/src/ArduinoJson/JsonArray.hpp index 7906b97d..8ce21d7c 100644 --- a/src/ArduinoJson/JsonArray.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonArrayImpl.hpp b/src/ArduinoJson/JsonArrayImpl.hpp index fe590211..924b7ea7 100644 --- a/src/ArduinoJson/JsonArrayImpl.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonArraySubscript.hpp b/src/ArduinoJson/JsonArraySubscript.hpp index b156602b..06d33094 100644 --- a/src/ArduinoJson/JsonArraySubscript.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonBuffer.hpp b/src/ArduinoJson/JsonBuffer.hpp index 79f31f0b..5a42a7d0 100644 --- a/src/ArduinoJson/JsonBuffer.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonBufferBase.hpp b/src/ArduinoJson/JsonBufferBase.hpp index 051444d7..08be31fb 100644 --- a/src/ArduinoJson/JsonBufferBase.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonBufferImpl.hpp b/src/ArduinoJson/JsonBufferImpl.hpp index 4746aec0..cdea374b 100644 --- a/src/ArduinoJson/JsonBufferImpl.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonObject.hpp b/src/ArduinoJson/JsonObject.hpp index 2209c9bc..5dff1090 100644 --- a/src/ArduinoJson/JsonObject.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonObjectImpl.hpp b/src/ArduinoJson/JsonObjectImpl.hpp index 313df453..e7689b50 100644 --- a/src/ArduinoJson/JsonObjectImpl.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonObjectSubscript.hpp b/src/ArduinoJson/JsonObjectSubscript.hpp index 393473a5..1657cf77 100644 --- a/src/ArduinoJson/JsonObjectSubscript.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonPair.hpp b/src/ArduinoJson/JsonPair.hpp index 0030955d..41724304 100644 --- a/src/ArduinoJson/JsonPair.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonVariant.hpp b/src/ArduinoJson/JsonVariant.hpp index 8162dc67..f2d7ff95 100644 --- a/src/ArduinoJson/JsonVariant.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonVariantBase.hpp b/src/ArduinoJson/JsonVariantBase.hpp index 46f18a6f..8c669eb5 100644 --- a/src/ArduinoJson/JsonVariantBase.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonVariantCasts.hpp b/src/ArduinoJson/JsonVariantCasts.hpp index 5f6377f0..85a96de4 100644 --- a/src/ArduinoJson/JsonVariantCasts.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonVariantComparisons.hpp b/src/ArduinoJson/JsonVariantComparisons.hpp index 049e9568..156d0db3 100644 --- a/src/ArduinoJson/JsonVariantComparisons.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonVariantImpl.hpp b/src/ArduinoJson/JsonVariantImpl.hpp index b84ee1a6..1ebec981 100644 --- a/src/ArduinoJson/JsonVariantImpl.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonVariantOr.hpp b/src/ArduinoJson/JsonVariantOr.hpp index 564f1dc3..895737ba 100644 --- a/src/ArduinoJson/JsonVariantOr.hpp +++ b/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 diff --git a/src/ArduinoJson/JsonVariantSubscripts.hpp b/src/ArduinoJson/JsonVariantSubscripts.hpp index 86f7a569..210f2611 100644 --- a/src/ArduinoJson/JsonVariantSubscripts.hpp +++ b/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 diff --git a/src/ArduinoJson/Polyfills/attributes.hpp b/src/ArduinoJson/Polyfills/attributes.hpp index 9f0e03a4..2c4e7e6c 100644 --- a/src/ArduinoJson/Polyfills/attributes.hpp +++ b/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 diff --git a/src/ArduinoJson/Polyfills/ctype.hpp b/src/ArduinoJson/Polyfills/ctype.hpp index a306357a..0e0f973e 100644 --- a/src/ArduinoJson/Polyfills/ctype.hpp +++ b/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 diff --git a/src/ArduinoJson/Polyfills/isFloat.hpp b/src/ArduinoJson/Polyfills/isFloat.hpp index a9019b10..c89f8c4b 100644 --- a/src/ArduinoJson/Polyfills/isFloat.hpp +++ b/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 diff --git a/src/ArduinoJson/Polyfills/isInteger.hpp b/src/ArduinoJson/Polyfills/isInteger.hpp index 3d9b0f4e..d63fdfba 100644 --- a/src/ArduinoJson/Polyfills/isInteger.hpp +++ b/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 diff --git a/src/ArduinoJson/Polyfills/math.hpp b/src/ArduinoJson/Polyfills/math.hpp index aec12d5e..3c631631 100644 --- a/src/ArduinoJson/Polyfills/math.hpp +++ b/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 diff --git a/src/ArduinoJson/Polyfills/parseFloat.hpp b/src/ArduinoJson/Polyfills/parseFloat.hpp index c3792dcb..54034c5c 100644 --- a/src/ArduinoJson/Polyfills/parseFloat.hpp +++ b/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 diff --git a/src/ArduinoJson/Polyfills/parseInteger.hpp b/src/ArduinoJson/Polyfills/parseInteger.hpp index bcab87a4..a1feb2aa 100644 --- a/src/ArduinoJson/Polyfills/parseInteger.hpp +++ b/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 diff --git a/src/ArduinoJson/RawJson.hpp b/src/ArduinoJson/RawJson.hpp index c02f2a00..5477278f 100644 --- a/src/ArduinoJson/RawJson.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/DummyPrint.hpp b/src/ArduinoJson/Serialization/DummyPrint.hpp index 209db9b9..9fdf2d6a 100644 --- a/src/ArduinoJson/Serialization/DummyPrint.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/DynamicStringBuilder.hpp b/src/ArduinoJson/Serialization/DynamicStringBuilder.hpp index 5cf956f7..41be6392 100644 --- a/src/ArduinoJson/Serialization/DynamicStringBuilder.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/FloatParts.hpp b/src/ArduinoJson/Serialization/FloatParts.hpp index 3a417439..aceaa638 100644 --- a/src/ArduinoJson/Serialization/FloatParts.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/IndentedPrint.hpp b/src/ArduinoJson/Serialization/IndentedPrint.hpp index fea59788..864f9aaa 100644 --- a/src/ArduinoJson/Serialization/IndentedPrint.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/JsonPrintable.hpp b/src/ArduinoJson/Serialization/JsonPrintable.hpp index d427dd75..9ea4bfb4 100644 --- a/src/ArduinoJson/Serialization/JsonPrintable.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/JsonSerializer.hpp b/src/ArduinoJson/Serialization/JsonSerializer.hpp index 3aacbdf2..c431ac83 100644 --- a/src/ArduinoJson/Serialization/JsonSerializer.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/JsonSerializerImpl.hpp b/src/ArduinoJson/Serialization/JsonSerializerImpl.hpp index 3c3560dc..0faae276 100644 --- a/src/ArduinoJson/Serialization/JsonSerializerImpl.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/JsonWriter.hpp b/src/ArduinoJson/Serialization/JsonWriter.hpp index 055aab66..62027e9f 100644 --- a/src/ArduinoJson/Serialization/JsonWriter.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/Prettyfier.hpp b/src/ArduinoJson/Serialization/Prettyfier.hpp index 6f3ee74b..8b4f0d2e 100644 --- a/src/ArduinoJson/Serialization/Prettyfier.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/StaticStringBuilder.hpp b/src/ArduinoJson/Serialization/StaticStringBuilder.hpp index 722574a3..9617bbd9 100644 --- a/src/ArduinoJson/Serialization/StaticStringBuilder.hpp +++ b/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 diff --git a/src/ArduinoJson/Serialization/StreamPrintAdapter.hpp b/src/ArduinoJson/Serialization/StreamPrintAdapter.hpp index 6ae21632..60f0af4a 100644 --- a/src/ArduinoJson/Serialization/StreamPrintAdapter.hpp +++ b/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 diff --git a/src/ArduinoJson/StaticJsonBuffer.hpp b/src/ArduinoJson/StaticJsonBuffer.hpp index 70123f2e..c68eb712 100644 --- a/src/ArduinoJson/StaticJsonBuffer.hpp +++ b/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 diff --git a/src/ArduinoJson/StringTraits/ArduinoStream.hpp b/src/ArduinoJson/StringTraits/ArduinoStream.hpp index 3a9eb65e..0fe08100 100644 --- a/src/ArduinoJson/StringTraits/ArduinoStream.hpp +++ b/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 diff --git a/src/ArduinoJson/StringTraits/CharPointer.hpp b/src/ArduinoJson/StringTraits/CharPointer.hpp index c2519665..b41e47da 100644 --- a/src/ArduinoJson/StringTraits/CharPointer.hpp +++ b/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 diff --git a/src/ArduinoJson/StringTraits/FlashString.hpp b/src/ArduinoJson/StringTraits/FlashString.hpp index dd668d10..2530ceee 100644 --- a/src/ArduinoJson/StringTraits/FlashString.hpp +++ b/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 diff --git a/src/ArduinoJson/StringTraits/StdStream.hpp b/src/ArduinoJson/StringTraits/StdStream.hpp index 322720dc..ef203391 100644 --- a/src/ArduinoJson/StringTraits/StdStream.hpp +++ b/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 diff --git a/src/ArduinoJson/StringTraits/StdString.hpp b/src/ArduinoJson/StringTraits/StdString.hpp index 108704f2..d7b14b20 100644 --- a/src/ArduinoJson/StringTraits/StdString.hpp +++ b/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 diff --git a/src/ArduinoJson/StringTraits/StringTraits.hpp b/src/ArduinoJson/StringTraits/StringTraits.hpp index 75d933c5..eec04dc5 100644 --- a/src/ArduinoJson/StringTraits/StringTraits.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/EnableIf.hpp b/src/ArduinoJson/TypeTraits/EnableIf.hpp index 6c7f0b16..c07b217f 100644 --- a/src/ArduinoJson/TypeTraits/EnableIf.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/FloatTraits.hpp b/src/ArduinoJson/TypeTraits/FloatTraits.hpp index 5d89fa3a..d7acd05e 100644 --- a/src/ArduinoJson/TypeTraits/FloatTraits.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsArray.hpp b/src/ArduinoJson/TypeTraits/IsArray.hpp index 62ffbca9..c65d00eb 100644 --- a/src/ArduinoJson/TypeTraits/IsArray.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsBaseOf.hpp b/src/ArduinoJson/TypeTraits/IsBaseOf.hpp index 36d74136..30e51b5d 100644 --- a/src/ArduinoJson/TypeTraits/IsBaseOf.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsChar.hpp b/src/ArduinoJson/TypeTraits/IsChar.hpp index d616507f..8e210d76 100644 --- a/src/ArduinoJson/TypeTraits/IsChar.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsConst.hpp b/src/ArduinoJson/TypeTraits/IsConst.hpp index 9e0e8c6d..295d03c8 100644 --- a/src/ArduinoJson/TypeTraits/IsConst.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsFloatingPoint.hpp b/src/ArduinoJson/TypeTraits/IsFloatingPoint.hpp index f0c22a01..7e3d305b 100644 --- a/src/ArduinoJson/TypeTraits/IsFloatingPoint.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsIntegral.hpp b/src/ArduinoJson/TypeTraits/IsIntegral.hpp index 5d89ff7f..a319f5cc 100644 --- a/src/ArduinoJson/TypeTraits/IsIntegral.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsSame.hpp b/src/ArduinoJson/TypeTraits/IsSame.hpp index 14a74297..bbf3ec17 100644 --- a/src/ArduinoJson/TypeTraits/IsSame.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsSignedIntegral.hpp b/src/ArduinoJson/TypeTraits/IsSignedIntegral.hpp index 2b52a36b..8b590087 100644 --- a/src/ArduinoJson/TypeTraits/IsSignedIntegral.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsUnsignedIntegral.hpp b/src/ArduinoJson/TypeTraits/IsUnsignedIntegral.hpp index aa7f10f9..0e43ab01 100644 --- a/src/ArduinoJson/TypeTraits/IsUnsignedIntegral.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/IsVariant.hpp b/src/ArduinoJson/TypeTraits/IsVariant.hpp index 1050c374..85a5e3fe 100644 --- a/src/ArduinoJson/TypeTraits/IsVariant.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/RemoveConst.hpp b/src/ArduinoJson/TypeTraits/RemoveConst.hpp index 5c8ae69c..f9714bd3 100644 --- a/src/ArduinoJson/TypeTraits/RemoveConst.hpp +++ b/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 diff --git a/src/ArduinoJson/TypeTraits/RemoveReference.hpp b/src/ArduinoJson/TypeTraits/RemoveReference.hpp index 3f05125c..8d5a929f 100644 --- a/src/ArduinoJson/TypeTraits/RemoveReference.hpp +++ b/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 diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index bdc6a7eb..4fee0ea1 100644 --- a/test/CMakeLists.txt +++ b/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)") diff --git a/test/DynamicJsonBuffer/CMakeLists.txt b/test/DynamicJsonBuffer/CMakeLists.txt index 358e33b5..f028ccc4 100644 --- a/test/DynamicJsonBuffer/CMakeLists.txt +++ b/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 diff --git a/test/DynamicJsonBuffer/alloc.cpp b/test/DynamicJsonBuffer/alloc.cpp index 2e5ea04e..54b7842c 100644 --- a/test/DynamicJsonBuffer/alloc.cpp +++ b/test/DynamicJsonBuffer/alloc.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/DynamicJsonBuffer/createArray.cpp b/test/DynamicJsonBuffer/createArray.cpp index 1ddb60c3..34ab07e9 100644 --- a/test/DynamicJsonBuffer/createArray.cpp +++ b/test/DynamicJsonBuffer/createArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/DynamicJsonBuffer/createObject.cpp b/test/DynamicJsonBuffer/createObject.cpp index 713c0f6c..2193a659 100644 --- a/test/DynamicJsonBuffer/createObject.cpp +++ b/test/DynamicJsonBuffer/createObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/DynamicJsonBuffer/no_memory.cpp b/test/DynamicJsonBuffer/no_memory.cpp index 3c84d585..013b1741 100644 --- a/test/DynamicJsonBuffer/no_memory.cpp +++ b/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 diff --git a/test/DynamicJsonBuffer/size.cpp b/test/DynamicJsonBuffer/size.cpp index 76e10349..8ebba424 100644 --- a/test/DynamicJsonBuffer/size.cpp +++ b/test/DynamicJsonBuffer/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/DynamicJsonBuffer/startString.cpp b/test/DynamicJsonBuffer/startString.cpp index 8bc9b5a1..2e5bef7f 100644 --- a/test/DynamicJsonBuffer/startString.cpp +++ b/test/DynamicJsonBuffer/startString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/DynamicJsonBuffer/strdup.cpp b/test/DynamicJsonBuffer/strdup.cpp index f5158795..9feea421 100644 --- a/test/DynamicJsonBuffer/strdup.cpp +++ b/test/DynamicJsonBuffer/strdup.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/IntegrationTests/CMakeLists.txt b/test/IntegrationTests/CMakeLists.txt index 266bfa8b..9294bbbf 100644 --- a/test/IntegrationTests/CMakeLists.txt +++ b/test/IntegrationTests/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(IntegrationTests diff --git a/test/IntegrationTests/gbathree.cpp b/test/IntegrationTests/gbathree.cpp index f4c5a9bc..9a514425 100644 --- a/test/IntegrationTests/gbathree.cpp +++ b/test/IntegrationTests/gbathree.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/IntegrationTests/round_trip.cpp b/test/IntegrationTests/round_trip.cpp index 1a1f8b9e..ec8c0b0c 100644 --- a/test/IntegrationTests/round_trip.cpp +++ b/test/IntegrationTests/round_trip.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/CMakeLists.txt b/test/JsonArray/CMakeLists.txt index 82f568d4..7d48a1ac 100644 --- a/test/JsonArray/CMakeLists.txt +++ b/test/JsonArray/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(JsonArrayTests diff --git a/test/JsonArray/add.cpp b/test/JsonArray/add.cpp index 384675f9..c344457c 100644 --- a/test/JsonArray/add.cpp +++ b/test/JsonArray/add.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/basics.cpp b/test/JsonArray/basics.cpp index b12a5e25..eada17e2 100644 --- a/test/JsonArray/basics.cpp +++ b/test/JsonArray/basics.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/copyFrom.cpp b/test/JsonArray/copyFrom.cpp index 892ae17c..850301a7 100644 --- a/test/JsonArray/copyFrom.cpp +++ b/test/JsonArray/copyFrom.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/copyTo.cpp b/test/JsonArray/copyTo.cpp index 90d8380b..90150590 100644 --- a/test/JsonArray/copyTo.cpp +++ b/test/JsonArray/copyTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/invalid.cpp b/test/JsonArray/invalid.cpp index 470e682d..045517ba 100644 --- a/test/JsonArray/invalid.cpp +++ b/test/JsonArray/invalid.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/iterator.cpp b/test/JsonArray/iterator.cpp index e9f00128..fff81964 100644 --- a/test/JsonArray/iterator.cpp +++ b/test/JsonArray/iterator.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/prettyPrintTo.cpp b/test/JsonArray/prettyPrintTo.cpp index 078b23df..fc5c526d 100644 --- a/test/JsonArray/prettyPrintTo.cpp +++ b/test/JsonArray/prettyPrintTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/printTo.cpp b/test/JsonArray/printTo.cpp index d07e2e85..73f14ac6 100644 --- a/test/JsonArray/printTo.cpp +++ b/test/JsonArray/printTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/remove.cpp b/test/JsonArray/remove.cpp index 5fda9ebd..08935818 100644 --- a/test/JsonArray/remove.cpp +++ b/test/JsonArray/remove.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/set.cpp b/test/JsonArray/set.cpp index 1c0ad80b..77e737d1 100644 --- a/test/JsonArray/set.cpp +++ b/test/JsonArray/set.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonArray/subscript.cpp b/test/JsonArray/subscript.cpp index aee9dd85..f1551c15 100644 --- a/test/JsonArray/subscript.cpp +++ b/test/JsonArray/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonBuffer/CMakeLists.txt b/test/JsonBuffer/CMakeLists.txt index 6e1797d9..34b3e735 100644 --- a/test/JsonBuffer/CMakeLists.txt +++ b/test/JsonBuffer/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(JsonBufferTests diff --git a/test/JsonBuffer/nested.cpp b/test/JsonBuffer/nested.cpp index 25746ec6..263e40e6 100644 --- a/test/JsonBuffer/nested.cpp +++ b/test/JsonBuffer/nested.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonBuffer/nestingLimit.cpp b/test/JsonBuffer/nestingLimit.cpp index c328bee3..0d7be115 100644 --- a/test/JsonBuffer/nestingLimit.cpp +++ b/test/JsonBuffer/nestingLimit.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonBuffer/parse.cpp b/test/JsonBuffer/parse.cpp index 03ad5537..70e57918 100644 --- a/test/JsonBuffer/parse.cpp +++ b/test/JsonBuffer/parse.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonBuffer/parseArray.cpp b/test/JsonBuffer/parseArray.cpp index fa464500..2e843f8c 100644 --- a/test/JsonBuffer/parseArray.cpp +++ b/test/JsonBuffer/parseArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonBuffer/parseObject.cpp b/test/JsonBuffer/parseObject.cpp index deb8f524..1af6bde1 100644 --- a/test/JsonBuffer/parseObject.cpp +++ b/test/JsonBuffer/parseObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/CMakeLists.txt b/test/JsonObject/CMakeLists.txt index 61dce9f8..a1b07969 100644 --- a/test/JsonObject/CMakeLists.txt +++ b/test/JsonObject/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(JsonObjectTests diff --git a/test/JsonObject/basics.cpp b/test/JsonObject/basics.cpp index 275c2873..dd981702 100644 --- a/test/JsonObject/basics.cpp +++ b/test/JsonObject/basics.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/containsKey.cpp b/test/JsonObject/containsKey.cpp index e1dda37b..f8d0a152 100644 --- a/test/JsonObject/containsKey.cpp +++ b/test/JsonObject/containsKey.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/get.cpp b/test/JsonObject/get.cpp index f2c0e968..b3635956 100644 --- a/test/JsonObject/get.cpp +++ b/test/JsonObject/get.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/invalid.cpp b/test/JsonObject/invalid.cpp index be7e2a52..019ced10 100644 --- a/test/JsonObject/invalid.cpp +++ b/test/JsonObject/invalid.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/iterator.cpp b/test/JsonObject/iterator.cpp index b2563c25..e765d5c7 100644 --- a/test/JsonObject/iterator.cpp +++ b/test/JsonObject/iterator.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/prettyPrintTo.cpp b/test/JsonObject/prettyPrintTo.cpp index 55fd52a8..30459246 100644 --- a/test/JsonObject/prettyPrintTo.cpp +++ b/test/JsonObject/prettyPrintTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/printTo.cpp b/test/JsonObject/printTo.cpp index c3e537ec..6d0bcc9a 100644 --- a/test/JsonObject/printTo.cpp +++ b/test/JsonObject/printTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/remove.cpp b/test/JsonObject/remove.cpp index fce58aff..0e68eec0 100644 --- a/test/JsonObject/remove.cpp +++ b/test/JsonObject/remove.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/set.cpp b/test/JsonObject/set.cpp index 5e873d14..b70de49d 100644 --- a/test/JsonObject/set.cpp +++ b/test/JsonObject/set.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonObject/subscript.cpp b/test/JsonObject/subscript.cpp index f581b536..23710570 100644 --- a/test/JsonObject/subscript.cpp +++ b/test/JsonObject/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/CMakeLists.txt b/test/JsonVariant/CMakeLists.txt index 02bff3df..0a00a15a 100644 --- a/test/JsonVariant/CMakeLists.txt +++ b/test/JsonVariant/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(JsonVariantTests diff --git a/test/JsonVariant/as.cpp b/test/JsonVariant/as.cpp index efa16912..6d3b11cc 100644 --- a/test/JsonVariant/as.cpp +++ b/test/JsonVariant/as.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/compare.cpp b/test/JsonVariant/compare.cpp index 81361a5a..965ec8ef 100644 --- a/test/JsonVariant/compare.cpp +++ b/test/JsonVariant/compare.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/copy.cpp b/test/JsonVariant/copy.cpp index 9cbf9782..50e0a3bf 100644 --- a/test/JsonVariant/copy.cpp +++ b/test/JsonVariant/copy.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/is.cpp b/test/JsonVariant/is.cpp index d955a776..1bb03cbb 100644 --- a/test/JsonVariant/is.cpp +++ b/test/JsonVariant/is.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/or.cpp b/test/JsonVariant/or.cpp index 98a7f611..51687dea 100644 --- a/test/JsonVariant/or.cpp +++ b/test/JsonVariant/or.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/printTo.cpp b/test/JsonVariant/printTo.cpp index e8406747..3431eaee 100644 --- a/test/JsonVariant/printTo.cpp +++ b/test/JsonVariant/printTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/set_get.cpp b/test/JsonVariant/set_get.cpp index a615ec85..af68c8b0 100644 --- a/test/JsonVariant/set_get.cpp +++ b/test/JsonVariant/set_get.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/subscript.cpp b/test/JsonVariant/subscript.cpp index 9412d1f8..5ce13e6f 100644 --- a/test/JsonVariant/subscript.cpp +++ b/test/JsonVariant/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/success.cpp b/test/JsonVariant/success.cpp index b01db264..af8aad94 100644 --- a/test/JsonVariant/success.cpp +++ b/test/JsonVariant/success.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonVariant/undefined.cpp b/test/JsonVariant/undefined.cpp index fa71cf94..9615f0f4 100644 --- a/test/JsonVariant/undefined.cpp +++ b/test/JsonVariant/undefined.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonWriter/CMakeLists.txt b/test/JsonWriter/CMakeLists.txt index f2ca45c2..12a12bfd 100644 --- a/test/JsonWriter/CMakeLists.txt +++ b/test/JsonWriter/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(JsonWriterTests diff --git a/test/JsonWriter/writeFloat.cpp b/test/JsonWriter/writeFloat.cpp index 1d372623..532de5dc 100644 --- a/test/JsonWriter/writeFloat.cpp +++ b/test/JsonWriter/writeFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/JsonWriter/writeString.cpp b/test/JsonWriter/writeString.cpp index 5be6722c..e583fbcf 100644 --- a/test/JsonWriter/writeString.cpp +++ b/test/JsonWriter/writeString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Misc/CMakeLists.txt b/test/Misc/CMakeLists.txt index 363ebce9..5b572601 100644 --- a/test/Misc/CMakeLists.txt +++ b/test/Misc/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(MiscTests diff --git a/test/Misc/FloatParts.cpp b/test/Misc/FloatParts.cpp index 517d4cc2..aeed52e7 100644 --- a/test/Misc/FloatParts.cpp +++ b/test/Misc/FloatParts.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Misc/StringBuilder.cpp b/test/Misc/StringBuilder.cpp index 13a4ee0e..a7132dbd 100644 --- a/test/Misc/StringBuilder.cpp +++ b/test/Misc/StringBuilder.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Misc/TypeTraits.cpp b/test/Misc/TypeTraits.cpp index 7281a42c..1619591a 100644 --- a/test/Misc/TypeTraits.cpp +++ b/test/Misc/TypeTraits.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Misc/deprecated.cpp b/test/Misc/deprecated.cpp index d00aee01..bc7f97ba 100644 --- a/test/Misc/deprecated.cpp +++ b/test/Misc/deprecated.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #define ARDUINOJSON_ENABLE_DEPRECATED 1 diff --git a/test/Misc/std_stream.cpp b/test/Misc/std_stream.cpp index 602e3f22..170c9418 100644 --- a/test/Misc/std_stream.cpp +++ b/test/Misc/std_stream.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Misc/std_string.cpp b/test/Misc/std_string.cpp index 65c1e1f7..00b76e83 100644 --- a/test/Misc/std_string.cpp +++ b/test/Misc/std_string.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Misc/unsigned_char.cpp b/test/Misc/unsigned_char.cpp index 90daa680..5d7a47e0 100644 --- a/test/Misc/unsigned_char.cpp +++ b/test/Misc/unsigned_char.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Misc/vla.cpp b/test/Misc/vla.cpp index 8257f0d7..1e5ee1e2 100644 --- a/test/Misc/vla.cpp +++ b/test/Misc/vla.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Polyfills/CMakeLists.txt b/test/Polyfills/CMakeLists.txt index 9fef3185..d96ce719 100644 --- a/test/Polyfills/CMakeLists.txt +++ b/test/Polyfills/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(PolyfillsTests diff --git a/test/Polyfills/isFloat.cpp b/test/Polyfills/isFloat.cpp index 70591ee8..033f9154 100644 --- a/test/Polyfills/isFloat.cpp +++ b/test/Polyfills/isFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Polyfills/isInteger.cpp b/test/Polyfills/isInteger.cpp index ff6e3dbb..64f5937e 100644 --- a/test/Polyfills/isInteger.cpp +++ b/test/Polyfills/isInteger.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Polyfills/parseFloat.cpp b/test/Polyfills/parseFloat.cpp index c4462282..c57bc413 100644 --- a/test/Polyfills/parseFloat.cpp +++ b/test/Polyfills/parseFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/Polyfills/parseInteger.cpp b/test/Polyfills/parseInteger.cpp index 3010bb0c..50e5eedb 100644 --- a/test/Polyfills/parseInteger.cpp +++ b/test/Polyfills/parseInteger.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/StaticJsonBuffer/CMakeLists.txt b/test/StaticJsonBuffer/CMakeLists.txt index f4777bee..00c78dfa 100644 --- a/test/StaticJsonBuffer/CMakeLists.txt +++ b/test/StaticJsonBuffer/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_executable(StaticJsonBufferTests diff --git a/test/StaticJsonBuffer/alloc.cpp b/test/StaticJsonBuffer/alloc.cpp index fda11f1a..9141def8 100644 --- a/test/StaticJsonBuffer/alloc.cpp +++ b/test/StaticJsonBuffer/alloc.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/StaticJsonBuffer/createArray.cpp b/test/StaticJsonBuffer/createArray.cpp index fd7eff7a..9f0d3bd5 100644 --- a/test/StaticJsonBuffer/createArray.cpp +++ b/test/StaticJsonBuffer/createArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/StaticJsonBuffer/createObject.cpp b/test/StaticJsonBuffer/createObject.cpp index b47e4236..c51e9bb9 100644 --- a/test/StaticJsonBuffer/createObject.cpp +++ b/test/StaticJsonBuffer/createObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/StaticJsonBuffer/parseArray.cpp b/test/StaticJsonBuffer/parseArray.cpp index ee22c2fc..f2feda99 100644 --- a/test/StaticJsonBuffer/parseArray.cpp +++ b/test/StaticJsonBuffer/parseArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/StaticJsonBuffer/parseObject.cpp b/test/StaticJsonBuffer/parseObject.cpp index 8c413c63..83601d67 100644 --- a/test/StaticJsonBuffer/parseObject.cpp +++ b/test/StaticJsonBuffer/parseObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/StaticJsonBuffer/size.cpp b/test/StaticJsonBuffer/size.cpp index 1105821b..5ef76bf4 100644 --- a/test/StaticJsonBuffer/size.cpp +++ b/test/StaticJsonBuffer/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/test/StaticJsonBuffer/startString.cpp b/test/StaticJsonBuffer/startString.cpp index 922e4e61..5bfce16a 100644 --- a/test/StaticJsonBuffer/startString.cpp +++ b/test/StaticJsonBuffer/startString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #include diff --git a/third-party/catch/CMakeLists.txt b/third-party/catch/CMakeLists.txt index d518e8cc..59515f54 100644 --- a/third-party/catch/CMakeLists.txt +++ b/third-party/catch/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2017 +# Copyright Benoit Blanchon 2014-2018 # MIT License add_library(catch diff --git a/third-party/catch/catch.cpp b/third-party/catch/catch.cpp index 4d8b7b6a..2eb9b09e 100644 --- a/third-party/catch/catch.cpp +++ b/third-party/catch/catch.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2017 +// Copyright Benoit Blanchon 2014-2018 // MIT License #define CATCH_CONFIG_MAIN