diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ac481f..f23f037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## Version 1.1.4 + +### Bugfixes +* Fix macOS deployment target info of subspec definitions. + ## Version 1.1.3 ### Bugfixes diff --git a/Capable.podspec b/Capable.podspec index 00accf7..153c969 100644 --- a/Capable.podspec +++ b/Capable.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Capable' - s.version = '1.1.3' + s.version = '1.1.4' s.summary = 'Keep track of accessibility settings, leverage high contrast colors, and use scalable fonts to enable users with disabilities to use your app.' s.description = <<-DESC @@ -10,6 +10,7 @@ Capable lets you easily keep track of accessibility settings used by your app us s.homepage = 'https://github.com/chrs1885/Capable' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'Christoph Wendt' => 'christoph.wendt@me.com' } + s.social_media_url = 'https://twitter.com/chr_wendt' s.source = { :git => 'https://github.com/chrs1885/Capable.git', :tag => s.version } s.documentation_url = 'http://htmlpreview.github.io/?https://github.com/chrs1885/Capable/blob/1.0.0/Documentation/index.html' s.swift_version = '5.0' @@ -17,22 +18,18 @@ Capable lets you easily keep track of accessibility settings used by your app us s.framework = 'Foundation' s.ios.framework = s.tvos.framework = s.watchos.framework = 'UIKit' s.watchos.framework = 'WatchKit' + s.osx.framework = 'AppKit' s.ios.deployment_target = '10.0' s.tvos.deployment_target = '10.0' s.watchos.deployment_target = '4.0' + s.osx.deployment_target = '10.12' s.subspec 'Features' do |featuresSubspec| - s.osx.framework = 'AppKit' - s.osx.deployment_target = '10.12' - featuresSubspec.source_files = 'Source/Features/**/*.swift', 'Source/Common/**/*.swift' end s.subspec 'Colors' do |colorsSubspec| - s.osx.framework = 'AppKit' - s.osx.deployment_target = '10.12' - colorsSubspec.source_files = 'Source/Colors/**/*.swift', 'Source/Common/**/*.swift' end diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 1f2e631..6fb474a 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -28,7 +28,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - Capable: 1568ec5d4dde7daf0925ea327463ee333c9f7341 + Capable: a0fa984888106d458496147719928ffc3dfdefd2 Nimble: 18d5360282923225d62b09d781f63abc1a0111fc Quick: 7fb19e13be07b5dfb3b90d4f9824c855a11af40e SheetyColors: ae8c3a5d04d310e8e2d08e4aa0bd543519d02252 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 8116807..87488cf 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -2503,6 +2503,7 @@ hasScannedForEncodings = 0; knownRegions = ( en, + Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; productRefGroup = 7F4ED286A27BDF9FA9964E098BA207F3 /* Products */; diff --git a/README.md b/README.md index 7cc06b9..783fe41 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ github "chrs1885/Capable" ```ruby dependencies: [ - .package(url: "https://github.com/chrs1885/Capable.git", from: "1.1.3") + .package(url: "https://github.com/chrs1885/Capable.git", from: "1.1.4") ] ```