Skip to content

Commit

Permalink
chore(release): 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalaber authored and jonathannorris committed Jan 27, 2022
1 parent 92a5eff commit 146c5d8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DevCycle-iOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.devcycle.DevCycle;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -553,7 +553,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.devcycle.DevCycle;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion DevCycle.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "DevCycle"
spec.version = "1.0.0"
spec.version = "1.1.0"
spec.summary = "The iOS SDK for Devcycle!"

spec.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion DevCycle/Models/PlatformDetails.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ struct PlatformDetails {
#endif

var sdkType = "client"
var sdkVersion = "1.0.0"
var sdkVersion = "1.1.0"
}
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,26 @@ Include the following in your `Cartfile`:
github "DevCycleHQ/ios-client-sdk"
```

### Swift Package Manager

To use the library with Swift Package Manager, include it as a dependency in your `Package.swift` file like so:

```
...
dependencies: [
.package(url: "https://github.com/DevCycleHQ/ios-client-sdk.git", .upToNextMinor("1.0.0")),
],
targets: [
.target(
name: "YOUR_TARGET",
dependencies: ["DevCycle"]
)
],
...
```

You can also add it through Xcode, i.e. `File > Swift Packages > Add Package Dependency`, then enter the repository clone URL.

## Usage

### Initializing the SDK
Expand Down

0 comments on commit 146c5d8

Please sign in to comment.