Skip to content

Commit

Permalink
Prepared 7.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brototyp committed Sep 6, 2024
1 parent 98fb04c commit 82a1f3b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 7.7.0
* **feature** Added functionality to reset a Matomo instance. [#434](https://github.com/matomo-org/matomo-sdk-ios/pull/434)
* **feature** Added a persistent event queue storing events in the UserDefaults. [#137](https://github.com/matomo-org/matomo-sdk-ios/issues/137) (by @bobunmeng and @brototyp)

Expand Down
2 changes: 1 addition & 1 deletion MatomoTracker.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "MatomoTracker"
spec.version = "7.6.0"
spec.version = "7.7.0"
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' }
Expand Down
2 changes: 1 addition & 1 deletion MatomoTracker/MatomoTracker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ extension MatomoTracker {

extension MatomoTracker {
/// The version of the Matomo SDKs
@objc public static let sdkVersion = "7.5"
@objc public static let sdkVersion = "7.7.0"
}

extension MatomoTracker {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The MatomoTracker can be installed via CocoaPods, Carthage and the Swift Package

Use the following in your Podfile.
```
pod 'MatomoTracker', '~> 7.5'
pod 'MatomoTracker', '~> 7.7'
```
Then run `pod install`.

Expand All @@ -32,7 +32,7 @@ github "matomo-org/matomo-sdk-ios"

You can use the Swift Package Manager as integration method. If you want to use the Swift Package Manager as integration method, either use Xcode to add the package dependency or add the following dependency to your Package.swift:

`.package(url: "https://github.com/matomo-org/matomo-sdk-ios.git", from: "v7.5.0"),`
`.package(url: "https://github.com/matomo-org/matomo-sdk-ios.git", from: "v7.7.0"),`

and in your dependencies:

Expand Down

0 comments on commit 82a1f3b

Please sign in to comment.