Skip to content

Commit 13d37c4

Browse files
authored
Default Swift version now correctly set to 4.2 (#39)
Addressed issue where Swift version was incorrectly set to 5.0 when it should have been 4.2.
1 parent 4fd4299 commit 13d37c4

File tree

4 files changed

+27
-7
lines changed

4 files changed

+27
-7
lines changed

CHANGELOG.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
`Elevate` adheres to [Semantic Versioning](http://semver.org/).
55

66
#### 3.x Releases
7-
7+
* `3.1.x` Releases = [3.1.0](#310) | [3.1.1](#311)
88
* `3.0.x` Releases = [3.0.0](#300) | [3.0.1](#301) | [3.0.2](#302)
99

1010
#### 2.x Releases
@@ -20,6 +20,30 @@ All notable changes to this project will be documented in this file.
2020

2121
---
2222

23+
## Unreleased
24+
25+
#### Added
26+
27+
#### Updated
28+
29+
#### Deprecated
30+
31+
#### Removed
32+
33+
#### Fixed
34+
35+
---
36+
37+
## [3.1.1](https://github.com/Nike-Inc/Elevate/releases/tag/3.1.1)
38+
Released on 2019-05-02. All issues associated with this milestone can be found using this
39+
[filter](https://github.com/Nike-Inc/Elevate/milestone/7?closed=1).
40+
41+
#### Fixed
42+
- Issue where Swift version was incorrectly set to 5.0 when it should have been 4.2.
43+
- Fixed by [Greg Tropino](https://github.com/gtrop1) in Pull Request [#39](https://github.com/Nike-Inc/Elevate/pull/39).
44+
45+
---
46+
2347
## [3.1.0](https://github.com/Nike-Inc/Elevate/releases/tag/3.1.0)
2448

2549
Released on 2019-04-30. All issues associated with this milestone can be found using this

Elevate.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Elevate"
3-
s.version = "3.1.0"
3+
s.version = "3.1.1"
44
s.summary = "Elevate is a JSON parsing framework that leverages Swift to make parsing simple, reliable and composable."
55
s.homepage = "https://github.com/Nike-Inc/Elevate"
66
s.license = "MIT"

Elevate.xcodeproj/project.pbxproj

-4
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,6 @@
10921092
PRODUCT_BUNDLE_IDENTIFIER = com.nike.Elevate;
10931093
PRODUCT_NAME = Elevate;
10941094
SKIP_INSTALL = YES;
1095-
SWIFT_VERSION = 5.0;
10961095
};
10971096
name = Debug;
10981097
};
@@ -1118,7 +1117,6 @@
11181117
PRODUCT_BUNDLE_IDENTIFIER = com.nike.Elevate;
11191118
PRODUCT_NAME = Elevate;
11201119
SKIP_INSTALL = YES;
1121-
SWIFT_VERSION = 5.0;
11221120
};
11231121
name = Release;
11241122
};
@@ -1136,7 +1134,6 @@
11361134
);
11371135
PRODUCT_BUNDLE_IDENTIFIER = com.nike.ElevateTests;
11381136
PRODUCT_NAME = ElevateTests;
1139-
SWIFT_VERSION = 5.0;
11401137
};
11411138
name = Debug;
11421139
};
@@ -1154,7 +1151,6 @@
11541151
);
11551152
PRODUCT_BUNDLE_IDENTIFIER = com.nike.ElevateTests;
11561153
PRODUCT_NAME = ElevateTests;
1157-
SWIFT_VERSION = 5.0;
11581154
};
11591155
name = Release;
11601156
};

Source/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.1.0</string>
18+
<string>3.1.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)