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

Commit 5c10487

Browse files
authored
Update README.md
Update README.md to add warning about `Breaking Change` in v1.8.0
1 parent 315250a commit 5c10487

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
## Table of Contents
1313

14+
* [Important Breaking Change from v1.8.0](#Important-Breaking-Change-from-v180)
1415
* [Why do we need this Timezone_Generic library](#why-do-we-need-this-timezone_generic-library)
1516
* [Features](#features)
1617
* [Currently Supported Boards](#currently-supported-boards)
@@ -132,6 +133,27 @@
132133
---
133134
---
134135

136+
### Important Breaking Change from v1.8.0
137+
138+
Please have a look at [HOWTO Fix `Multiple Definitions` Linker Error](#howto-fix-multiple-definitions-linker-error)
139+
140+
From v1.8.0, you must use
141+
142+
```
143+
#include <Timezone_Generic.h> // https://github.com/khoih-prog/Timezone_Generic
144+
145+
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
146+
#include <Timezone_Generic_Impl.h> // https://github.com/khoih-prog/Timezone_Generic
147+
```
148+
149+
instead of only
150+
151+
```
152+
#include <Timezone_Generic.h> // https://github.com/khoih-prog/Timezone_Generic
153+
```
154+
155+
156+
135157
### Why do we need this [Timezone_Generic library](https://github.com/khoih-prog/Timezone_Generic)
136158

137159
### Features

0 commit comments

Comments
 (0)