Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 3f40bdd

Browse files
authored
v1.10.0 for ESP32 core v2.0.6
### Releases v1.10.0 1. Fix compile errors for new ESP32 core `v2.0.6`
1 parent b6a455f commit 3f40bdd

26 files changed

+45
-114
lines changed

src/EthernetHttpClient_SSL.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_SSL-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
#pragma once

src/EthernetWebServer_SSL.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,20 +22,21 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
#pragma once
2829

2930
#ifndef ETHERNET_WEBSERVER_SSL_H
3031
#define ETHERNET_WEBSERVER_SSL_H
3132

32-
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.3"
33+
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.10.0"
3334

3435
#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
35-
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 9
36-
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 3
36+
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 10
37+
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 0
3738

38-
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009003
39+
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1010000
3940

4041
/////////////////////////////////////////////////////////////////////////
4142

src/EthernetWebServer_SSL.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
#pragma once

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
// (c) Copyright Arduino. 2016

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.3
11+
Version: 1.10.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424
1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+
1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526
*****************************************************************************************************************************/
2627

2728
// (c) Copyright Arduino. 2016

0 commit comments

Comments
 (0)