Skip to content

Commit 0fd568b

Browse files
committed
Merge branch 'main' into feat/text-scale-value
2 parents 09c7edb + 29297d4 commit 0fd568b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
### Features
66

77
- Add textScale(r) value to Flutter context ([#1886](https://github.com/getsentry/sentry-dart/pull/1886))
8+
### Improvements
9+
10+
- Set `sentry_flutter.podspec` version from `pubspec.yaml` ([#1941](https://github.com/getsentry/sentry-dart/pull/1941))
811

912
## 7.18.0
1013

flutter/ios/sentry_flutter.podspec

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
require 'yaml'
2+
pubspec = YAML.load_file('./../pubspec.yaml')
3+
version = pubspec['version'].to_s
4+
15
Pod::Spec.new do |s|
26
s.name = 'sentry_flutter'
3-
s.version = '0.0.1'
7+
s.version = version
48
s.summary = 'Sentry SDK for Flutter.'
59
s.description = <<-DESC
610
Sentry SDK for Flutter with support to native through sentry-cocoa.

0 commit comments

Comments
 (0)