Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify Swift 4.2 in podspecs #297

Merged
merged 3 commits into from
May 18, 2019
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
* **improvement** Made copyFromOldSharedInstance available from Objective-C. [#282] (https://github.com/matomo-org/matomo-sdk-ios/issues/282)
* **improvement** Accepting urls ending in `matomo.php` in addition to `piwik.php` when initializing a new instance. [#286] (https://github.com/matomo-org/matomo-sdk-ios/pull/286)
* **bugfix** Specified Swift 4.2 in both `.podspec` files. [#297] (https://github.com/matomo-org/matomo-sdk-ios/pull/297)

## 6.0.0
* **feature** Added the possibility to implement custom queues. [#137](https://github.com/matomo-org/matomo-sdk-ios/issues/137)
Expand Down
1 change: 1 addition & 0 deletions MatomoTracker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Pod::Spec.new do |spec|
spec.osx.deployment_target = '10.12'
spec.requires_arc = true
spec.default_subspecs = 'Core'
spec.swift_version = '4.2'

spec.subspec 'Core' do |core|
core.source_files = 'MatomoTracker/*.swift'
Expand Down
2 changes: 1 addition & 1 deletion PiwikTracker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |spec|
spec.osx.deployment_target = '10.12'
spec.requires_arc = true
spec.default_subspecs = 'Core'
spec.swift_version = '4.1'
spec.swift_version = '4.2'

spec.deprecated_in_favor_of = 'MatomoTracker'

Expand Down