Skip to content

Commit

Permalink
Merge pull request #54 from futuredapp/release/v1.1.0
Browse files Browse the repository at this point in the history
Release v1.1.0
  • Loading branch information
mkj-is authored Apr 9, 2020
2 parents 1e62cc1 + 7d62537 commit 14c5516
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions FTAPIKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "FTAPIKit"
s.version = "1.0.0"
s.summary = "Declarative, generic and protocol-orented REST API framework using URLSession and Codable"
s.version = "1.1.0"
s.summary = "Declarative, generic and protocol-oriented REST API framework using URLSession and Codable"
s.description = <<-DESC
Protocol-oriented framework for communication with REST APIs.
Endpoint protocols describe the API resource access points
Expand All @@ -18,9 +18,9 @@ Pod::Spec.new do |s|

s.frameworks = ["Foundation", "CoreServices"]

s.swift_version = "5.0"
s.swift_version = "5.1"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "5.0"
s.tvos.deployment_target = "12.0"
end
1 change: 1 addition & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import PackageDescription

let package = Package(
name: "FTAPIKit",
platforms: [.iOS(.v12), .macOS(.v10_10), .tvOS(.v12), .watchOS(.v5)],
products: [
.library(
name: "FTAPIKit",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ When using Swift package manager install using Xcode 11+
or add following line to your dependencies:

```swift
.package(url: "https://github.com/futuredapp/FTAPIKit.git", from: "1.0.0")
.package(url: "https://github.com/futuredapp/FTAPIKit.git", from: "1.1.0")
```

When using CocoaPods add following line to your `Podfile`:

```ruby
pod 'FTAPIKit', '~> 1.0'
pod 'FTAPIKit', '~> 1.1'
```

## Features
Expand Down

0 comments on commit 14c5516

Please sign in to comment.