Skip to content
This repository has been archived by the owner on Jan 28, 2019. It is now read-only.

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pvzig committed Jan 24, 2018
1 parent f7bba46 commit a37bc70
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cartfile
@@ -1 +1 @@
github "SlackKit/SKCore" >= 4.0.0
github "SlackKit/SKCore" >= 4.1.0
12 changes: 6 additions & 6 deletions Package.swift
Expand Up @@ -4,14 +4,14 @@ import PackageDescription
let package = Package(
name: "SKClient",
products: [
.library(name: "SKClient", targets: ["SKClient"]),
.library(name: "SKClient", targets: ["SKClient"])
],
dependencies: [
.package(url: "https://github.com/SlackKit/SKCore", .upToNextMinor(from: "4.0.0"))
.package(url: "https://github.com/SlackKit/SKCore", .upToNextMinor(from: "4.1.0"))
],
targets: [
.target(name: "SKClient",
dependencies: ["SKCore"],
path: "Sources")
.target(name: "SKClient",
dependencies: ["SKCore"],
path: "Sources")
]
)
)
6 changes: 3 additions & 3 deletions Podfile
Expand Up @@ -2,15 +2,15 @@ use_frameworks!

target 'SKClient macOS' do
platform :osx, '10.11'
pod 'SKCore', ~> '4.1.0'
pod 'SKCore', '~> 4.1.0'
end

target 'SKClient iOS' do
platform :ios, '9.0'
pod 'SKCore', ~> '4.1.0'
pod 'SKCore', '~> 4.1.0'
end

target 'SKClient tvOS' do
platform :tvos, '9.0'
pod 'SKCore', ~> '4.1.0'
pod 'SKCore', '~> 4.1.0'
end
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -49,7 +49,7 @@ import PackageDescription

let package = Package(
dependencies: [
.package(url: "https://github.com/SlackKit/SKClient.git", .upToNextMinor(from: "4.0.0"))
.package(url: "https://github.com/SlackKit/SKClient.git", .upToNextMinor(from: "4.1.0"))
]
)
```
Expand Down

0 comments on commit a37bc70

Please sign in to comment.