Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/sdk-integration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Add Measure as a dependency by adding `dependencies` value to your `Package.swif

```swift
dependencies: [
.package(url: "https://github.com/measure-sh/measure.git", branch: "ios-v0.9.1")
.package(url: "https://github.com/measure-sh/measure.git", branch: "ios-v0.9.2")
]
```

Expand Down
20 changes: 20 additions & 0 deletions ios/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,32 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [ios-v0.9.2] - 2026-03-05

### :bug: Bug fixes


- (**ios**): Use correct data type for session start time attribute (#3256)

### :hammer: Misc


- (**ios**): Delete expired attachments on cleanup (#3262)
- (**ios**): Add session start timestamp to attributes (#3250)
- (**ios**): Add http_sampling_rate dynamic config (#3231)

## [ios-v0.9.1] - 2026-02-23

### :bug: Bug fixes


- (**ios**): Make config api call asynchronously (#3202)

### :hammer: Misc


- (**ios**): Prepare sdk release 0.9.1 (#3203)

## [ios-v0.9.0] - 2026-02-19

### :bug: Bug fixes
Expand Down Expand Up @@ -341,6 +360,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- (**ios**): Expose API to get current session ID (#1677)
- (**ios**): Initial project setup (#1034)

[ios-v0.9.2]: https://github.com///compare/ios-v0.9.1..ios-v0.9.2
[ios-v0.9.1]: https://github.com///compare/ios-v0.9.0..ios-v0.9.1
[ios-v0.9.0]: https://github.com///compare/ios-v0.8.1..ios-v0.9.0
[ios-v0.8.1]: https://github.com///compare/ios-v0.8.0..ios-v0.8.1
Expand Down
2 changes: 1 addition & 1 deletion ios/Sources/MeasureSDK/Swift/FrameworkInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
import Foundation

struct FrameworkInfo {
static let version = "0.9.1"
static let version = "0.9.2"
}
2 changes: 1 addition & 1 deletion measure-sh.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|
spec.name = "measure-sh"
spec.module_name = "Measure"
spec.version = "0.9.1"
spec.version = "0.9.2"
spec.summary = "Open source tool to monitor mobile apps"
spec.homepage = "https://github.com/measure-sh/measure.git"
spec.license = { :type => "Apache 2.0", :file => "LICENSE" }
Expand Down