Skip to content

Commit 2a51605

Browse files
committed
Preparing the 5.0.0 release
1 parent 71d7056 commit 2a51605

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ Adheres to [Semantic Versioning](http://semver.org/).
44

55
---
66

7-
## 4.1.5 (TBD)
7+
## 5.0.0
88

9-
* TBD
9+
* Breaking changes for Swift interopability. Converted C `enum` types to Objective-C `NS_ENUM` for proper visibility in Swift.
10+
* Release builds were failing in [Mage iOS app](https://github.com/ngageoint/mage-ios/) (Cannot find 'SF_POINT' in scope) and optimizations were disabled due to related symbols issues.
11+
* Updated types: `SFGeometryType`, `SFFiniteFilterType`, and `SFEventType` to use `NS_ENUM(NSInteger)`.
1012

1113
## [4.1.4](https://github.com/ngageoint/simple-features-ios/releases/tag/4.1.4) (04-08-2024)
1214

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,20 @@ Open sf-ios.xcworkspace in Xcode or build from command line:
3939

4040
Run tests from Xcode or from command line:
4141

42-
xcodebuild test -workspace 'sf-ios.xcworkspace' -scheme sf-ios -destination 'platform=iOS Simulator,name=iPhone 15'
42+
xcodebuild test -workspace 'sf-ios.xcworkspace' -scheme sf-ios -destination 'platform=iOS Simulator,name=iPhone 16'
4343

4444
### Include Library ###
4545

4646
Include this repository by specifying it in a Podfile using a supported option.
4747

4848
Pull from [CocoaPods](https://cocoapods.org/pods/sf-ios):
4949

50-
pod 'sf-ios', '~> 4.1.4'
50+
pod 'sf-ios', '~> 5.0.0'
5151

5252
Pull from GitHub:
5353

5454
pod 'sf-ios', :git => 'https://github.com/ngageoint/simple-features-ios.git', :branch => 'master'
55-
pod 'sf-ios', :git => 'https://github.com/ngageoint/simple-features-ios.git', :tag => '4.1.4'
55+
pod 'sf-ios', :git => 'https://github.com/ngageoint/simple-features-ios.git', :tag => '5.0.0'
5656

5757
Include as local project:
5858

docs/release.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ xcodebuild -workspace 'sf-ios.xcworkspace' -scheme sf-ios build
55

66
Xcode Test:
77

8-
xcodebuild test -workspace 'sf-ios.xcworkspace' -scheme sf-ios -destination 'platform=iOS Simulator,name=iPhone 15'
8+
xcodebuild test -workspace 'sf-ios.xcworkspace' -scheme sf-ios -destination 'platform=iOS Simulator,name=iPhone 16'
99

1010
CocoaPods Local Lint:
1111

sf-ios.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'sf-ios'
3-
s.version = '4.1.5'
3+
s.version = '5.0.0'
44
s.license = {:type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'iOS SDK for Simple Features'
66
s.homepage = 'https://github.com/ngageoint/simple-features-ios'

0 commit comments

Comments
 (0)