Skip to content

Commit ca3dba8

Browse files
updates changelog
1 parent 0e2c968 commit ca3dba8

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,23 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## 6.4.15
66
### Added
7-
- `config.dataRegion` which configures the iOS SDK to use API endpoints for the Iterable EU data center. This configuration defaults to API endpoints for the US data center.
7+
- This release allows you to use projects hosted on Iterable's EU data center. If your project is hosted on Iterable's [European data center (EUDC)](https://support.iterable.com/hc/articles/17572750887444), configure the SDK to use Iterable's EU-based API endpoints:
8+
9+
_Swift_
10+
11+
```swift
12+
let config = IterableConfig()
13+
config.dataRegion = IterableDataRegion.EU
14+
IterableAPI.initialize(apiKey: "<YOUR_API_KEY>", launchOptions: launchOptions, config: config)
15+
```
16+
17+
_Objective-C_
18+
19+
```objectivec
20+
IterableConfig *config = [[IterableConfig alloc] init];
21+
config.dataRegion = IterableDataRegion.EU;
22+
[IterableAPI initializeWithApiKey:@"<YOUR_API_KEY>" launchOptions:launchOptions config:config];
23+
```
824
925
## 6.4.14
1026
### Added

0 commit comments

Comments
 (0)