Skip to content

Commit

Permalink
fix of #934
Browse files Browse the repository at this point in the history
  • Loading branch information
bardram committed Mar 30, 2024
1 parent b62d2e5 commit f5fef33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/health/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 10.1.0
## 10.1.1

* fix of error in `WorkoutSummary` JSON serialization.
* fix of [#934](https://github.com/cph-cachet/flutter-plugins/issues/934)
* empty value check for calories nutrition, PR [#926](https://github.com/cph-cachet/flutter-plugins/pull/926)

## 10.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3002,7 +3002,7 @@ class HealthPlugin(private var channel: MethodChannel? = null) :
}
is BodyTemperatureRecord ->
return listOf(
mapOf<String, Any>(w
mapOf<String, Any>(
"value" to
record.temperature
.inCelsius,
Expand Down
2 changes: 1 addition & 1 deletion packages/health/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: health
description: Wrapper for HealthKit on iOS and Google Fit and Health Connect on Android.
version: 10.1.0
version: 10.1.1
homepage: https://github.com/cph-cachet/flutter-plugins/tree/master/packages/health

environment:
Expand Down

0 comments on commit f5fef33

Please sign in to comment.