Skip to content

Commit

Permalink
Cleanup warnings (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannys42 authored Oct 4, 2021
1 parent 72318f3 commit c249988
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ matrix:
- os: osx
osx_image: xcode11
sudo: required
env: SWIFT_SNAPSHOT=5.1.5 JAZZY_ELIGIBLE=true
env: JAZZY_ELIGIBLE=true
#env: SWIFT_SNAPSHOT=5.1.5 JAZZY_ELIGIBLE=true
- os: osx
osx_image: xcode12.2
sudo: required
Expand Down
4 changes: 2 additions & 2 deletions BlueSSLService.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BlueSSLService"
s.version = "2.0.0"
s.version = "2.0.1"
s.summary = "SSL/TLS Add-in framework for BlueSocket in Swift"
s.homepage = "https://github.com/Kitura/BlueSSLService"
s.license = { :type => "Apache License, Version 2.0" }
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/Kitura/BlueSSLService.git", :tag => s.version }
s.source_files = "Sources/SSLService/*.swift"
s.dependency 'BlueSocket', '~> 2.0.0'
s.dependency 'BlueSocket', '~> 2.0.2'
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '5.1',
}
Expand Down
5 changes: 2 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import PackageDescription

#if os(Linux) || os(macOS) || os(iOS) || os(tvOS)

var packageDependencies: [Package.Dependency] = [.package(url: "https://github.com/Kitura/BlueSocket.git", from: "2.0.0")]
var packageDependencies: [Package.Dependency] = [.package(url: "https://github.com/Kitura/BlueSocket.git", from: "2.0.2")]
var targetDependencies: [Target.Dependency] = [.byName(name: "Socket")]

#if os(Linux)
Expand Down Expand Up @@ -55,8 +55,7 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "SSLService",
dependencies: targetDependencies,
exclude: ["SSLService.xcodeproj", "README.md", "Sources/Info.plist"]
dependencies: targetDependencies
),
.testTarget(
name: "SSLServiceTests",
Expand Down

0 comments on commit c249988

Please sign in to comment.