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

Commit eda76fd

Browse files
authored
Update README.md
Update README.md to add warning about `Breaking Change` in v1.5.0
1 parent 5bff077 commit eda76fd

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
## Table of Contents
1313

14-
14+
* [Important Breaking Change from v1.5.0](#Important-Breaking-Change-from-v150)
1515
* [Why do we need the new Async AsyncHTTPRequest_Generic library](#why-do-we-need-this-async-asynchttprequest_generic-library)
1616
* [Features](#features)
1717
* [Supports](#supports)
@@ -81,6 +81,29 @@
8181
* [License and credits](#license-and-credits)
8282
* [Copyright](#copyright)
8383

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+
84107
---
85108
---
86109

0 commit comments

Comments
 (0)