Skip to content
This repository was archived by the owner on Oct 12, 2024. It is now read-only.

Commit c47a9ac

Browse files
author
github-actions
committed
Prepare release for version 0.56.1
1 parent 5ef2ca8 commit c47a9ac

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [0.56.1]
44

5-
- Released @ 2024-06-10 03:13:18.086237Z
5+
- Released @ 2024-06-10 03:14:22.208480Z
66
- Fix typo
77

88
## [0.56.0]

lib/shared_src/web_friendly/packages/@location_utils_package/src/_calculate_havershire_3d_distance.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ extension CalculateHavershire3DDistanceOnLocationPackageExtension
4040
double calculateHavershire3DDistance({
4141
required TLocationComponents location1,
4242
required TLocationComponents location2,
43-
LocationUtilsPackageDistanceUnit unit = LocationUtilsPackageDistanceUnit.METRES,
43+
LocationUtilsPackageDistanceUnit unit =
44+
LocationUtilsPackageDistanceUnit.METRES,
4445
LocationUtilsPackageRadius radius = LocationUtilsPackageRadius.EARTH,
4546
}) {
4647
final lat1 = location1.latitude;

lib/shared_src/web_friendly/packages/@location_utils_package/src/_t_location_components.dart

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ part of '../location_utils_package.dart';
1212

1313
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
1414

15-
typedef TLocationComponents = ({double longitude, double latitude, double altitude});
15+
typedef TLocationComponents = ({
16+
double longitude,
17+
double latitude,
18+
double altitude
19+
});

0 commit comments

Comments
 (0)