Skip to content

Commit

Permalink
Fix SAMD compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Nov 9, 2023
1 parent b24696c commit 3c99bae
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=ESP-Google-Sheet-Client

version=1.4.1
version=1.4.2

author=Mobizt

Expand Down
4 changes: 2 additions & 2 deletions src/ESP_Google_Sheet_Client.cpp
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
6 changes: 3 additions & 3 deletions src/ESP_Google_Sheet_Client.h
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/GS_Const.h
Original file line number Diff line number Diff line change
Expand Up @@ -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(){};
Expand Down

0 comments on commit 3c99bae

Please sign in to comment.