Skip to content

Commit

Permalink
updated OS versions in podfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ypopovych committed Aug 2, 2023
1 parent 033d3ef commit 2d17bb8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ScaleCodec.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ SCALE codec implementation for Swift language. Supports all SCALE standard types
s.author = { 'Tesseract Systems, Inc.' => '[email protected]' }
s.source = { :git => 'https://github.com/tesseract-one/ScaleCodec.swift.git', :tag => s.version.to_s }

s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '6.0'

s.swift_version = '5.4'

Expand All @@ -27,7 +27,7 @@ SCALE codec implementation for Swift language. Supports all SCALE standard types
s.source_files = 'Sources/ScaleCodec/**/*.swift', 'Sources/DoubleWidth/*.swift'

s.test_spec 'Tests' do |test_spec|
test_spec.platforms = {:ios => '9.0', :osx => '10.10', :tvos => '9.0'}
test_spec.platforms = {:ios => '10.0', :osx => '10.12', :tvos => '10.0'}
test_spec.source_files = 'Tests/ScaleCodecTests/**/*.swift', 'Tests/DoubleWidthTests/DoubleWidthTests.swift'
end
end

0 comments on commit 2d17bb8

Please sign in to comment.