diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d32f71..1867c42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog -## unreleased +## 3.13.1 [2023-03-08] ### Fixes - [210](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/210) - Allow setting of options without previously set connection params +- [211](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/211) - Fixed ESP32 builds using unofficial Arduino Cores ## 3.13.0 [2022-10-14] ### Features diff --git a/library.properties b/library.properties index ddf0578..c7e4af8 100644 --- a/library.properties +++ b/library.properties @@ -1,7 +1,7 @@ name=ESP8266 Influxdb -version=3.13.0 -author=Tobias Schürg, InfluxData -maintainer=Tobias Schürg, InfluxData +version=3.13.1 +author=Tobias Schürg, Vlasta Hajek +maintainer=Tobias Schürg, Vlasta Hajek sentence=InfluxDB Client for Arduino. url=https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino paragraph=This library allows writing and reading data from InfluxDB server or InfluxDB Cloud. Supports authentication, secure communication over TLS, batching and retrying. diff --git a/src/Version.h b/src/Version.h index cbbaa87..5aa5e05 100644 --- a/src/Version.h +++ b/src/Version.h @@ -27,6 +27,6 @@ #ifndef _VERSION_H_ #define _VERSION_H_ -#define INFLUXDB_CLIENT_VERSION "3.13.0" +#define INFLUXDB_CLIENT_VERSION "3.13.1" #endif //_VERSION_H_