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

Commit 3235735

Browse files
authored
Update README.md
Update README.md to add warning about `Breaking Change` in v1.1.0
1 parent e23200d commit 3235735

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
@@ -10,7 +10,7 @@
1010

1111
## Table of Contents
1212

13-
13+
* [Important Breaking Change from v1.1.0](#Important-Breaking-Change-from-v110)
1414
* [Why do we need the new Async Portenta_H7_AsyncHTTPRequest library](#why-do-we-need-this-async-Portenta_H7_AsyncHTTPRequest-library)
1515
* [Features](#features)
1616
* [Supports](#supports)
@@ -61,6 +61,29 @@
6161
* [License and credits](#license-and-credits)
6262
* [Copyright](#copyright)
6363

64+
---
65+
---
66+
67+
### Important Breaking Change from v1.1.0
68+
69+
Please have a look at [HOWTO Fix `Multiple Definitions` Linker Error](#howto-fix-multiple-definitions-linker-error)
70+
71+
From v1.1.0, you must use
72+
73+
```
74+
#include <Portenta_H7_AsyncHTTPRequest.h> //https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest
75+
76+
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
77+
#include <Portenta_H7_AsyncHTTPRequest_Impl.h> // https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest
78+
```
79+
80+
instead of only
81+
82+
```
83+
#include <Portenta_H7_AsyncHTTPRequest.h> //https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest
84+
```
85+
86+
6487
---
6588
---
6689

0 commit comments

Comments
 (0)