Skip to content

Commit 1f62270

Browse files
jsalaberjonathannorris
authored andcommitted
chore(release): 1.1.0
1 parent 4fb239b commit 1f62270

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

DevCycle-iOS.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@
523523
"@executable_path/Frameworks",
524524
"@loader_path/Frameworks",
525525
);
526-
MARKETING_VERSION = 1.0.0;
526+
MARKETING_VERSION = 1.1.0;
527527
PRODUCT_BUNDLE_IDENTIFIER = com.devcycle.DevCycle;
528528
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
529529
SKIP_INSTALL = YES;
@@ -553,7 +553,7 @@
553553
"@executable_path/Frameworks",
554554
"@loader_path/Frameworks",
555555
);
556-
MARKETING_VERSION = 1.0.0;
556+
MARKETING_VERSION = 1.1.0;
557557
PRODUCT_BUNDLE_IDENTIFIER = com.devcycle.DevCycle;
558558
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
559559
SKIP_INSTALL = YES;

DevCycle.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "DevCycle"
3-
spec.version = "1.0.0"
3+
spec.version = "1.1.0"
44
spec.summary = "The iOS SDK for Devcycle!"
55

66
spec.description = <<-DESC

DevCycle/Models/PlatformDetails.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ struct PlatformDetails {
1919
#endif
2020

2121
var sdkType = "client"
22-
var sdkVersion = "1.0.0"
22+
var sdkVersion = "1.1.0"
2323
}

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,26 @@ Include the following in your `Cartfile`:
3131
github "DevCycleHQ/ios-client-sdk"
3232
```
3333

34+
### Swift Package Manager
35+
36+
To use the library with Swift Package Manager, include it as a dependency in your `Package.swift` file like so:
37+
38+
```
39+
...
40+
dependencies: [
41+
.package(url: "https://github.com/DevCycleHQ/ios-client-sdk.git", .upToNextMinor("1.0.0")),
42+
],
43+
targets: [
44+
.target(
45+
name: "YOUR_TARGET",
46+
dependencies: ["DevCycle"]
47+
)
48+
],
49+
...
50+
```
51+
52+
You can also add it through Xcode, i.e. `File > Swift Packages > Add Package Dependency`, then enter the repository clone URL.
53+
3454
## Usage
3555

3656
### Initializing the SDK

0 commit comments

Comments
 (0)