release version 0.2.3

This commit is contained in:
goenning
2023-10-01 09:41:13 +01:00
parent 0e867245a2
commit e5b76bf37a
4 changed files with 8 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Aptabase'
s.version = '0.2.2'
s.version = '0.2.3'
s.summary = 'Swift SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps'
s.homepage = 'https://aptabase.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }

View File

@@ -1,3 +1,7 @@
## 0.2.3
* support for macOS Catalyst (thanks @manucheri)
## 0.2.2
* Fix compile issues on Swift 5.6 (thanks @manucheri)

View File

@@ -19,7 +19,7 @@ let package = Package(
...
dependencies: [
...
.package(name: "Aptabase", url: "https://github.com/aptabase/aptabase-swift.git", from: "0.2.2"),
.package(name: "Aptabase", url: "https://github.com/aptabase/aptabase-swift.git", from: "0.2.3"),
],
targets: [
.target(
@@ -39,7 +39,7 @@ Use this [guide](https://developer.apple.com/documentation/xcode/adding-package-
Aptabase is also available through CocoaPods. To install it, simply add the following line to your Podfile:
```ruby
pod 'Aptabase', :git => 'https://github.com/aptabase/aptabase-swift.git', :tag => '0.2.2'
pod 'Aptabase', :git => 'https://github.com/aptabase/aptabase-swift.git', :tag => '0.2.3'
```

View File

@@ -12,7 +12,7 @@ public final class InitOptions: NSObject {
/// The Aptabase client used to track events.
public class Aptabase: NSObject {
private static var sdkVersion = "aptabase-swift@0.2.2";
private static var sdkVersion = "aptabase-swift@0.2.3";
// Session expires after 1 hour of inactivity
private var sessionTimeout: TimeInterval = 1 * 60 * 60