Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Half.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Half"
s.version = "1.1.0"
s.version = "1.2.0"
s.summary = "Swift Half-Precision Floating Point"
s.description = <<-DESC
A lightweight framework containing a Swift implementation for a half-precision floating point type for iOS, macOS, tvOS, and watchOS.
Expand All @@ -21,5 +21,14 @@ Pod::Spec.new do |s|
s.frameworks = 'Foundation'
s.swift_versions = ['4.0', '4.2', '5.0']
s.cocoapods_version = '>= 1.7.3'

s.test_spec 'Tests' do |ts|
ts.ios.deployment_target = '8.0'
ts.macos.deployment_target = '10.10'
ts.tvos.deployment_target = '9.0'

ts.source_files = 'Tests/CHalfTests/*Tests.swift',
'Tests/HalfTests/*Tests.swift'
end

end
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(

targets: [
.target(name: "CHalf"),
.testTarget(name: "CHalfTests", dependencies: ["CHalf"]),
.testTarget(name: "CHalfTests", dependencies: ["CHalf", "Half"]),

.target(name: "Half", dependencies: ["CHalf"]),
.testTarget(name: "HalfTests", dependencies: ["Half"])
Expand Down
2 changes: 1 addition & 1 deletion Sources/Half/Half.swift.gyb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Half.swift.gyb
// Half.swift
// Half
//
// Copyright © 2020 SomeRandomiOSDev. All rights reserved.
Expand Down