From 3c99baec27d737bbb740901ec1632bae12d31f10 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 9 Nov 2023 23:22:45 +0700 Subject: [PATCH] Fix SAMD compilation error. --- library.json | 2 +- library.properties | 2 +- src/ESP_Google_Sheet_Client.cpp | 4 ++-- src/ESP_Google_Sheet_Client.h | 6 +++--- src/GS_Const.h | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/library.json b/library.json index 58f0669..e59133a 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "ESP-Google-Sheet-Client", - "version": "1.4.1", + "version": "1.4.2", "keywords": "communication, REST, esp32, esp8266, raspberrypi, arduino", "description": "Arduino Google Sheet REST client library for Arduino devices. This library allows devices to communicate with Google Sheet API to read, edit and delete the spreadsheets", "repository": { diff --git a/library.properties b/library.properties index 9e4e33c..e7c46fd 100644 --- a/library.properties +++ b/library.properties @@ -1,6 +1,6 @@ name=ESP-Google-Sheet-Client -version=1.4.1 +version=1.4.2 author=Mobizt diff --git a/src/ESP_Google_Sheet_Client.cpp b/src/ESP_Google_Sheet_Client.cpp index 2bf76d9..b95bc62 100644 --- a/src/ESP_Google_Sheet_Client.cpp +++ b/src/ESP_Google_Sheet_Client.cpp @@ -1,9 +1,9 @@ /** - * Google Sheet Client, ESP_GOOGLE_SHEET_CLIENT_Google_Sheet_Client.cpp v1.4.1 + * Google Sheet Client, ESP_GOOGLE_SHEET_CLIENT_Google_Sheet_Client.cpp v1.4.2 * * This library supports Espressif ESP8266 and ESP32 MCUs * - * Created August 21, 2023 + * Created November 9, 2023 * * The MIT License (MIT) * Copyright (c) 2022 K. Suwatchai (Mobizt) diff --git a/src/ESP_Google_Sheet_Client.h b/src/ESP_Google_Sheet_Client.h index cee5643..351b2d6 100644 --- a/src/ESP_Google_Sheet_Client.h +++ b/src/ESP_Google_Sheet_Client.h @@ -1,13 +1,13 @@ #ifndef ESP_GOOGLE_SHEET_CLIENT_VERSION -#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.1" +#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.2" #endif /** - * Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.1 + * Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.2 * * This library supports Espressif ESP8266 and ESP32 MCUs * - * Created August 21, 2023 + * Created November 9, 2023 * * The MIT License (MIT) * Copyright (c) 2023 K. Suwatchai (Mobizt) diff --git a/src/GS_Const.h b/src/GS_Const.h index b6a03c9..6d1b896 100644 --- a/src/GS_Const.h +++ b/src/GS_Const.h @@ -163,7 +163,7 @@ struct esp_google_sheet_wifi_credential_t }; class esp_google_sheet_wifi { - friend class ESP_GOOGLE_SHEET_CLIENT_TCP_Client; + friend class GS_TCP_Client; public: esp_google_sheet_wifi(){};