Skip to content

Commit b70b28f

Browse files
committed
Fix versions
1 parent 90a62a8 commit b70b28f

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
## 13.3.0
1+
## 13.3.1
22

3-
* Add support for `WORKOUT_ROUTE` - PR [#454](https://github.com/carp-dk/carp-health-flutter/pull/454)
43
* iOS: Fix issues with app crashing on iOS 15
54
* iOS: Add support for `AppleSleepingWristTemperature` - PR [#468](https://github.com/carp-dk/carp-health-flutter/pull/468)
6-
* Android: Add support for `ActivityIntensityRecord` (READ/WRITE/Aggregate)
75
* Android: Add support for `SkinTemperatureRecord` (READ/WRITE)
6+
7+
## 13.3.0
8+
9+
* Add support for `WORKOUT_ROUTE` - PR [#454](https://github.com/carp-dk/carp-health-flutter/pull/454)
10+
* Android: Add support for `ActivityIntensityRecord` (READ/WRITE/Aggregate)
811
* Update to `androidx.health.connect:connect-client:1.2.0-alpha02`
912

1013
## 13.2.1

lib/src/health_changes.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ class HealthChangesResponse {
9292
factory HealthChangesResponse.fromMethodChannel(Map<dynamic, dynamic> map) {
9393
final rawChanges = map['changes'] as List? ?? const [];
9494
final changes = rawChanges
95-
.whereType<Map>()
96-
.map((change) => HealthChange.fromMethodChannel(change))
97-
.toList();
95+
.whereType<Map<dynamic, dynamic>>()
96+
.map((change) => HealthChange.fromMethodChannel(change))
97+
.toList();
9898

9999
return HealthChangesResponse(
100100
changes: changes,

0 commit comments

Comments
 (0)