Skip to content

Commit

Permalink
Set Swift version to 5.3 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
watt committed Sep 3, 2021
1 parent 41dd5ec commit 33dc24d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0
5.3
6 changes: 4 additions & 2 deletions BlueprintUI.podspec
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require_relative 'version'

Pod::Spec.new do |s|
Expand All @@ -7,9 +9,9 @@ Pod::Spec.new do |s|
s.homepage = 'https://www.github.com/square/blueprint'
s.license = 'Apache License, Version 2.0'
s.author = 'Square'
s.source = { :git => 'https://github.com/square/blueprint.git', :tag => s.version }
s.source = { git: 'https://github.com/square/blueprint.git', tag: s.version }

s.swift_version = '5.1'
s.swift_version = SWIFT_VERSION

s.ios.deployment_target = '12.0'

Expand Down
6 changes: 4 additions & 2 deletions BlueprintUICommonControls.podspec
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require_relative 'version'

Pod::Spec.new do |s|
Expand All @@ -7,9 +9,9 @@ Pod::Spec.new do |s|
s.homepage = 'https://www.github.com/square/blueprint'
s.license = 'Apache License, Version 2.0'
s.author = 'Square'
s.source = { :git => 'https://github.com/square/blueprint.git', :tag => s.version }
s.source = { git: 'https://github.com/square/blueprint.git', tag: s.version }

s.swift_version = '5.1'
s.swift_version = SWIFT_VERSION

s.ios.deployment_target = '12.0'

Expand Down
2 changes: 2 additions & 0 deletions version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

BLUEPRINT_VERSION ||= '0.28.0'

SWIFT_VERSION ||= File.read(File.join(__dir__, '.swift-version'))

0 comments on commit 33dc24d

Please sign in to comment.