We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 09c7edb + 29297d4 commit 0fd568bCopy full SHA for 0fd568b
CHANGELOG.md
@@ -5,6 +5,9 @@
5
### Features
6
7
- 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))
11
12
## 7.18.0
13
flutter/ios/sentry_flutter.podspec
@@ -1,6 +1,10 @@
1
+require 'yaml'
2
+pubspec = YAML.load_file('./../pubspec.yaml')
3
+version = pubspec['version'].to_s
4
Pod::Spec.new do |s|
s.name = 'sentry_flutter'
- s.version = '0.0.1'
+ s.version = version
s.summary = 'Sentry SDK for Flutter.'
s.description = <<-DESC
Sentry SDK for Flutter with support to native through sentry-cocoa.
0 commit comments