Skip to content

Commit 171bdc9

Browse files
authored
docs(version): update all references to 0.4.2 (#36)
* docs(version): bump version references from 0.4.1 to 0.4.2 * docs(changelog): add 0.4.2 release entry * docs(install): update installation examples to 0.4.2
1 parent bc3c67c commit 171bdc9

6 files changed

Lines changed: 11 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 0.4.2 (1 April, 2026)
2+
* [Fix] Removed unused `netinet6/in6.h` private header import from `FPReachability.m` that caused App Store submission warnings.
3+
* [Chore] Bumped podspec version to 0.4.2.
4+
15
Version 0.4.1 (25 November, 2025)
26
* [Fix] Fixed `$is_first_event_in_session` flag to only apply to engagement events (track, screen) and not metadata events (identify, group, alias). This ensures the session start flag is properly attributed to the first screen view for accurate GA4 attribution.
37
* [Fix] Fixed race condition in session handling that caused inconsistent session start flags when multiple events fired simultaneously. This resolves issues where GA4 events would reach destinations but not appear in Realtime reporting.

Examples/FreshpaintPodDemo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ target 'YourApp' do
6565
use_frameworks!
6666

6767
# Add Freshpaint SDK
68-
pod 'Freshpaint', '~> 0.4.0'
68+
pod 'Freshpaint', '~> 0.4.2'
6969

7070
# Your other dependencies...
7171
end

Examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Both demo apps showcase identical functionality:
6161
**Important**: These examples use local SDK references for development purposes. For your production app:
6262

6363
1. **Swift Package Manager**: Add the Freshpaint package from GitHub
64-
2. **CocoaPods**: Use `pod 'Freshpaint', '~> 0.4.0'` in your Podfile
64+
2. **CocoaPods**: Use `pod 'Freshpaint', '~> 0.4.2'` in your Podfile
6565

6666
### 🔐 API Key Setup
6767

Freshpaint/Classes/FPAnalytics.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ + (NSString *)version
537537
{
538538
// this has to match the actual version, NOT what's in info.plist
539539
// because Apple only accepts X.X.X as versions in the review process.
540-
return @"0.4.1";
540+
return @"0.4.2";
541541
}
542542

543543
#pragma mark - Helpers

Freshpaint/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.4.1</string>
18+
<string>0.4.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Swift](https://img.shields.io/badge/Swift-5.9+-orange.svg)](https://swift.org)
44
[![iOS](https://img.shields.io/badge/iOS-15.0+-blue.svg)](https://developer.apple.com/ios/)
55
[![tvOS](https://img.shields.io/badge/tvOS-12.0+-blue.svg)](https://developer.apple.com/tvos/)
6-
[![Version](https://img.shields.io/badge/version-0.4.1-green.svg)](https://github.com/freshpaint-io/freshpaint-ios)
6+
[![Version](https://img.shields.io/badge/version-0.4.2-green.svg)](https://github.com/freshpaint-io/freshpaint-ios)
77

88
The Freshpaint iOS SDK for sending data from your iOS app into Freshpaint.
99

@@ -21,7 +21,7 @@ Add the following to your `Package.swift` file:
2121

2222
```swift
2323
dependencies: [
24-
.package(url: "https://github.com/freshpaint-io/freshpaint-ios.git", from: "0.4.0")
24+
.package(url: "https://github.com/freshpaint-io/freshpaint-ios.git", from: "0.4.2")
2525
]
2626
```
2727

@@ -32,7 +32,7 @@ Or add it via Xcode: **File → Add Package Dependencies** and enter the reposit
3232
Add the following to your `Podfile`:
3333

3434
```ruby
35-
pod 'Freshpaint', '~> 0.4.0'
35+
pod 'Freshpaint', '~> 0.4.2'
3636
```
3737

3838
## Getting Started

0 commit comments

Comments
 (0)