Skip to content

Commit 8072e9f

Browse files
chore: bump version to v0.12.0 (#162)
## Summary - Bump version from 0.11.0 to 0.12.0 - Release includes breaking change (`FaroAssetTracking` replaces `FaroAssetBundle`), deprecations (`markEventStart`/`markEventEnd`), and new features (UI activity monitoring, asset load lifecycle signals, span-driven pending operations) ## Checklist - [x] CHANGELOG updated - [x] Version bumped in pubspec.yaml, faro.podspec, build.gradle - [x] All pre-release checks passed - [x] `flutter pub publish --dry-run` passed Made with [Cursor](https://cursor.com) <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Primarily a version/metadata bump plus changelog updates; no functional code changes are included in this diff. > > **Overview** > Bumps the SDK/package version from `0.11.0` to `0.12.0` across Dart (`pubspec.yaml`, `FaroConstants`), Android (`android/build.gradle`), iOS (`ios/faro.podspec`), and the example app lockfile. > > Adds a `0.12.0` section to `CHANGELOG.md` documenting deprecations and release notes (including a noted breaking API change and new user-action/activity tracking features). > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit cadc7ca. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 163e936 commit 8072e9f

6 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.12.0] - 2026-03-05
11+
1012
### Deprecated
1113

1214
- `markEventStart()` and `markEventEnd()` are now deprecated. Use

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.grafana.faro'
2-
version '0.11.0'
2+
version '0.12.0'
33

44
buildscript {
55
repositories {

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ packages:
175175
path: ".."
176176
relative: true
177177
source: path
178-
version: "0.11.0"
178+
version: "0.12.0"
179179
ffi:
180180
dependency: transitive
181181
description:

ios/faro.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'faro'
7-
s.version = '0.11.0'
7+
s.version = '0.12.0'
88
s.summary = 'A new Flutter plugin project.'
99
s.description = <<-DESC
1010
A new Flutter plugin project.

lib/src/util/constants.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// Constants for the Faro Flutter SDK
22
class FaroConstants {
33
/// The version of the Faro Flutter SDK
4-
static const String sdkVersion = '0.11.0';
4+
static const String sdkVersion = '0.12.0';
55

66
/// The name of the Faro Flutter SDK
77
static const String sdkName = 'faro-flutter-sdk';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: faro
22
description: Grafana Faro SDK for Flutter applications - Monitor your Flutter app with ease.
3-
version: 0.11.0
3+
version: 0.12.0
44
homepage: https://grafana.com/oss/faro/
55
repository: https://github.com/grafana/faro-flutter-sdk
66

0 commit comments

Comments
 (0)