Skip to content

Commit

Permalink
Only include .h, .m, .swift files in the podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
goenning committed Nov 23, 2023
1 parent f5f96f8 commit f430d4d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Aptabase.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Aptabase'
s.version = '0.3.4'
s.version = '0.3.5'
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' }
Expand All @@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.watchos.deployment_target = "6.0"
s.tvos.deployment_target = "13.0"
s.swift_version = '5.7'
s.source_files = 'Sources/Aptabase/**/*'
s.source_files = 'Sources/Aptabase/**/*.{h,m,swift}"
end
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.5

* Only include .h, .m, .swift files in the podspec

## 0.3.4

* Use new session id format
Expand Down
2 changes: 1 addition & 1 deletion Sources/Aptabase/AptabaseClient.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Foundation

class AptabaseClient {
private static let sdkVersion = "[email protected].4"
private static let sdkVersion = "[email protected].5"
// Session expires after 1 hour of inactivity
private static let sessionTimeout: TimeInterval = 1 * 60 * 60

Expand Down

0 comments on commit f430d4d

Please sign in to comment.