Skip to content

Commit

Permalink
Merge branch 'release/1.1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrwendt committed Feb 27, 2020
2 parents 7028df6 + 5d9ac94 commit 91f6cfa
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Version 1.1.4

### Bugfixes
* Fix macOS deployment target info of subspec definitions.

## Version 1.1.3

### Bugfixes
Expand Down
11 changes: 4 additions & 7 deletions Capable.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -10,29 +10,26 @@ 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'

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

Expand Down
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
Capable: 1568ec5d4dde7daf0925ea327463ee333c9f7341
Capable: a0fa984888106d458496147719928ffc3dfdefd2
Nimble: 18d5360282923225d62b09d781f63abc1a0111fc
Quick: 7fb19e13be07b5dfb3b90d4f9824c855a11af40e
SheetyColors: ae8c3a5d04d310e8e2d08e4aa0bd543519d02252
Expand Down
1 change: 1 addition & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
]
```

Expand Down

0 comments on commit 91f6cfa

Please sign in to comment.