This repository was archived by the owner on Feb 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 11
11
12
12
## Table of Contents
13
13
14
-
14
+ * [ Important Breaking Change from v1.5.0 ] ( #Important-Breaking-Change-from-v150 )
15
15
* [ Why do we need the new Async AsyncHTTPRequest_Generic library] ( #why-do-we-need-this-async-asynchttprequest_generic-library )
16
16
* [ Features] ( #features )
17
17
* [ Supports] ( #supports )
81
81
* [ License and credits] ( #license-and-credits )
82
82
* [ Copyright] ( #copyright )
83
83
84
+ ---
85
+ ---
86
+
87
+ ### Important Breaking Change from v1.5.0
88
+
89
+ Please have a look at [ HOWTO Fix ` Multiple Definitions ` Linker Error] ( #howto-fix-multiple-definitions-linker-error )
90
+
91
+ From v1.5.0, you must use
92
+
93
+ ```
94
+ #include <AsyncHTTPRequest_Generic.h> //https://github.com/khoih-prog/AsyncHTTPRequest_Generic
95
+
96
+ // To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
97
+ #include <AsyncHTTPRequest_Impl_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
98
+ ```
99
+
100
+ instead of only
101
+
102
+ ```
103
+ #include <AsyncHTTPRequest_Generic.h> //https://github.com/khoih-prog/AsyncHTTPRequest_Generic
104
+ ```
105
+
106
+
84
107
---
85
108
---
86
109
You can’t perform that action at this time.
0 commit comments