diff --git a/CHANGELOG.md b/CHANGELOG.md index 1867c42..583a99f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## 3.13.2 [2024-06-04] +### Fixes +- [236](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/236) - Fix compilation problem on ESP32 Core 3.0.0 + ## 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 diff --git a/src/HTTPService.h b/src/HTTPService.h index 25026c9..93bb14e 100644 --- a/src/HTTPService.h +++ b/src/HTTPService.h @@ -33,6 +33,8 @@ # include #elif defined(ESP32) # include +# include +# include #else # error "This library currently supports only ESP8266 and ESP32." #endif @@ -131,4 +133,5 @@ friend class Test; bool isConnected() const { return _httpClient && _httpClient->connected(); } }; -#endif //_HTTP_SERVICE_H_ \ No newline at end of file +#endif //_HTTP_SERVICE_H_ +