Skip to content

Commit f430d4d

Browse files
committed
Only include .h, .m, .swift files in the podspec
1 parent f5f96f8 commit f430d4d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Aptabase.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Aptabase'
3-
s.version = '0.3.4'
3+
s.version = '0.3.5'
44
s.summary = 'Swift SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps'
55
s.homepage = 'https://aptabase.com'
66
s.license = { :type => 'MIT', :file => 'LICENSE' }
@@ -11,5 +11,5 @@ Pod::Spec.new do |s|
1111
s.watchos.deployment_target = "6.0"
1212
s.tvos.deployment_target = "13.0"
1313
s.swift_version = '5.7'
14-
s.source_files = 'Sources/Aptabase/**/*'
14+
s.source_files = 'Sources/Aptabase/**/*.{h,m,swift}"
1515
end

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.5
2+
3+
* Only include .h, .m, .swift files in the podspec
4+
15
## 0.3.4
26

37
* Use new session id format

Sources/Aptabase/AptabaseClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Foundation
22

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

0 commit comments

Comments
 (0)