From 78fa55689c9711e20290ab88b650244e95116a2c Mon Sep 17 00:00:00 2001 From: Cornelius Horstmann Date: Sun, 3 Oct 2021 17:04:08 +0200 Subject: [PATCH] Prepared 7.5 release --- CHANGELOG.md | 3 +++ MatomoTracker.podspec | 2 +- README.md | 15 +-------------- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17d2ddb1..5b086ab8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog ## Unreleased + + +## 7.5.0 * **improvement** Allow overriding any of the tracking parameters. [#360](https://github.com/matomo-org/matomo-sdk-ios/issues/360) * **improvement** Fixed build warnings * **improvement** Use the new XCode build system [#391](https://github.com/matomo-org/matomo-sdk-ios/pull/391) diff --git a/MatomoTracker.podspec b/MatomoTracker.podspec index 292ca692..9ff580e8 100644 --- a/MatomoTracker.podspec +++ b/MatomoTracker.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "MatomoTracker" - spec.version = "7.4.1" + spec.version = "7.5" spec.summary = "A Matomo Tracker written in Swift for iOS, tvOS and macOS apps." spec.homepage = "https://github.com/matomo-org/matomo-sdk-ios/" spec.license = { :type => 'MIT', :file => 'LICENSE.md' } diff --git a/README.md b/README.md index d82aa9ae..4ca805a5 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,13 @@ The MatomoTracker is an iOS, tvOS and macOS SDK for sending app analytics to a M **Fancy help improve this SDK? Check [this list](https://github.com/matomo-org/matomo-sdk-ios/issues?utf8=✓&q=is%3Aopen+is%3Aissue) to see what is left and can be improved.** -[![Build Status](https://travis-ci.org/matomo-org/matomo-sdk-ios.svg?branch=develop)](https://travis-ci.org/matomo-org/matomo-sdk-ios) - ## Installation ### [CocoaPods](https://cocoapods.org) Use the following in your Podfile. ``` -pod 'MatomoTracker', '~> 7.4' +pod 'MatomoTracker', '~> 7.5' ``` Then run `pod install`. In every file you want to use the MatomoTracker, don't forget to import the framework with `import MatomoTracker`. @@ -237,17 +235,6 @@ Whenever you track an event or a page view it is stored in memory first. In ever ## Contributing Please read [CONTRIBUTING.md](https://github.com/matomo-org/matomo-sdk-ios/blob/develop/CONTRIBUTING.md) for details. -## ToDo -### These features aren't implemented yet - -- Tracking of more things - - Social Interactions - - Goals and Conversions - - Outlinks - - Downloads -- Customizing the tracker - - use different dispatchers (Alamofire) - ## License MatomoTracker is available under the [MIT license](LICENSE.md).