Skip to content

Commit 143d7c0

Browse files
authored
prepare for release 3.4.0 (#340)
1 parent 2bb077b commit 143d7c0

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
os: osx
108108
osx_image: xcode11.3
109109
env:
110-
- VERSION=3.3.2
110+
- VERSION=3.4.0
111111
install:
112112
# install hub
113113
- wget https://github.com/github/hub/releases/download/v2.11.2/hub-darwin-amd64-2.11.2.tgz -O /tmp/hub-darwin-amd64-2.11.2.tgz && tar -xvf /tmp/hub-darwin-amd64-2.11.2.tgz -C /usr/local/opt && ln -s /usr/local/opt/hub-darwin-amd64-2.11.2/bin/hub /usr/local/bin/hub
@@ -124,7 +124,7 @@ jobs:
124124
os: osx
125125
osx_image: xcode11.3
126126
env:
127-
- VERSION=3.3.2
127+
- VERSION=3.4.0
128128
install:
129129
# install hub
130130
- wget https://github.com/github/hub/releases/download/v2.11.2/hub-darwin-amd64-2.11.2.tgz -O /tmp/hub-darwin-amd64-2.11.2.tgz && tar -xvf /tmp/hub-darwin-amd64-2.11.2.tgz -C /usr/local/opt && ln -s /usr/local/opt/hub-darwin-amd64-2.11.2/bin/hub /usr/local/bin/hub

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Optimizely Swift SDK Changelog
22

3+
## 3.4.0
4+
July 9, 2020
5+
6+
### New Features
7+
* Add support for JSON feature variables. ([#315](https://github.com/optimizely/swift-sdk/pull/315), [#317](https://github.com/optimizely/swift-sdk/pull/317), [#318](https://github.com/optimizely/swift-sdk/pull/318))
8+
* Add macOS Compatibility. ([#332](https://github.com/optimizely/swift-sdk/pull/332))
9+
10+
### Bug Fixes
11+
* Add more audience evaluation logs. ([#336](https://github.com/optimizely/swift-sdk/pull/336))
12+
313
## 3.3.2
414
May 21, 2020
515

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ Please note below that _\<platform\>_ is used to represent the platform on which
3434
```
3535
dependencies: [
3636
.package(url: "https://github.com/optimizely/swift-sdk.git",
37-
.upToNextMinor(from: “3.3.2”))
37+
.upToNextMinor(from: “3.4.0”))
3838
]
3939
```
4040

4141
#### CocoaPods
4242
1. Add the following lines to the _Podfile_:<pre>
4343
```use_frameworks!```
44-
```pod 'OptimizelySwiftSDK', '~> 3.3.2'```
44+
```pod 'OptimizelySwiftSDK', '~> 3.4.0'```
4545
</pre>
4646

4747
2. Run the following command: <pre>``` pod install ```</pre>
4848

4949
Further installation instructions for Cocoapods: https://guides.cocoapods.org/using/getting-started.html
5050

5151
#### Carthage
52-
1. Add the following lines to the _Cartfile_:<pre>```github "optimizely/swift-sdk" ~> 3.3.2```</pre>
52+
1. Add the following lines to the _Cartfile_:<pre>```github "optimizely/swift-sdk" ~> 3.4.0```</pre>
5353

5454
2. Run the following command:<pre>```carthage update```</pre>
5555

0 commit comments

Comments
 (0)