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.0")
.package(url: "https://github.com/measure-sh/measure.git", branch: "ios-v0.9.1")
]
```

Expand Down
9 changes: 9 additions & 0 deletions ios/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.1] - 2026-02-23

### :bug: Bug fixes


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

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

### :bug: Bug fixes
Expand All @@ -15,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### :hammer: Misc


- (**ios**): Prepare sdk release 0.9.0 (#3146)
- (**ios**): Enable internal logging based on macro (#3141)
- (**ios**): Add cleanup logic for stale attachments (#3135)
- (**ios**): Update exporting logic (#3134)
Expand Down Expand Up @@ -333,6 +341,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.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
[ios-v0.8.0]: https://github.com///compare/ios-v0.7.1..ios-v0.8.0
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.0"
static let version = "0.9.1"
}
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.0"
spec.version = "0.9.1"
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