Skip to content

Commit 510961a

Browse files
committed
Bumped to 13.1.4, applied dart formatter
1 parent 490525b commit 510961a

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

packages/health/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 13.1.4
2+
3+
* Fix adding mindfulness resulted in crash in iOS
4+
15
## 13.1.3
26

37
* Fix permissions issues with iOS

packages/health/ios/health.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'health'
6-
s.version = '13.1.3'
6+
s.version = '13.1.4'
77
s.summary = 'Wrapper for Apple\'s HealthKit on iOS and Google\'s Health Connect on Android.'
88
s.description = <<-DESC
99
Wrapper for Apple's HealthKit on iOS and Google's Health Connect on Android.

packages/health/lib/src/health_value_types.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -632,14 +632,14 @@ class NutritionHealthValue extends HealthValue {
632632
dataPoint = dataPoint as Map<Object?, Object?>;
633633
// Convert to Map<String, Object?> and ensure all expected fields are present
634634
final Map<String, Object?> dataPointMap = {};
635-
635+
636636
// Add all entries from the native data
637637
dataPoint.forEach((key, value) {
638638
if (key != null) {
639639
dataPointMap[key as String] = value;
640640
}
641641
});
642-
642+
643643
return _$NutritionHealthValueFromJson(dataPointMap);
644644
}
645645

packages/health/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: health
22
description: Wrapper for Apple's HealthKit on iOS and Google's Health Connect on Android.
3-
version: 13.1.3
3+
version: 13.1.4
44
homepage: https://github.com/cph-cachet/flutter-plugins/tree/master/packages/health
55

66
environment:

0 commit comments

Comments
 (0)