Skip to content

Commit 3c99bae

Browse files
committed
Fix SAMD compilation error.
1 parent b24696c commit 3c99bae

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESP-Google-Sheet-Client",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"keywords": "communication, REST, esp32, esp8266, raspberrypi, arduino",
55
"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",
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=ESP-Google-Sheet-Client
22

3-
version=1.4.1
3+
version=1.4.2
44

55
author=Mobizt
66

src/ESP_Google_Sheet_Client.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* Google Sheet Client, ESP_GOOGLE_SHEET_CLIENT_Google_Sheet_Client.cpp v1.4.1
2+
* Google Sheet Client, ESP_GOOGLE_SHEET_CLIENT_Google_Sheet_Client.cpp v1.4.2
33
*
44
* This library supports Espressif ESP8266 and ESP32 MCUs
55
*
6-
* Created August 21, 2023
6+
* Created November 9, 2023
77
*
88
* The MIT License (MIT)
99
* Copyright (c) 2022 K. Suwatchai (Mobizt)

src/ESP_Google_Sheet_Client.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#ifndef ESP_GOOGLE_SHEET_CLIENT_VERSION
2-
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.1"
2+
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.2"
33
#endif
44

55
/**
6-
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.1
6+
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.2
77
*
88
* This library supports Espressif ESP8266 and ESP32 MCUs
99
*
10-
* Created August 21, 2023
10+
* Created November 9, 2023
1111
*
1212
* The MIT License (MIT)
1313
* Copyright (c) 2023 K. Suwatchai (Mobizt)

src/GS_Const.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ struct esp_google_sheet_wifi_credential_t
163163
};
164164
class esp_google_sheet_wifi
165165
{
166-
friend class ESP_GOOGLE_SHEET_CLIENT_TCP_Client;
166+
friend class GS_TCP_Client;
167167

168168
public:
169169
esp_google_sheet_wifi(){};

0 commit comments

Comments
 (0)