Skip to content

Commit 78b9b36

Browse files
committed
docs: stable release 2024-11-10 with support for ellipsoidal geodesy
1 parent 388e147 commit 78b9b36

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2024-11-10
2+
3+
* ✨ The stable release with [ellipsoidal geodesy functions](https://geospatial.navibyte.dev/v1/geobase/ellipsoidal-geodesy/) letting you calculate distances, bearings, destination positions and intermediate points along the Earth surface accurately.
4+
* All docs: [geospatial.navibyte.dev](https://geospatial.navibyte.dev/).
5+
* Published packages at pub.dev:
6+
* [geobase version 1.4.0](https://pub.dev/packages/geobase/versions/1.4.0+1)
7+
* [geodata version 1.3.0](https://pub.dev/packages/geodata/versions/1.3.0)
8+
19
## 2024-07-26
210

311
* ✨ The [stable version 1.3.0](https://github.com/navibyte/geospatial/milestone/5) with centroid, polylabel, point-in-polygon and other cartesian 2D calculations enhanced - [read more](https://geospatial.navibyte.dev/v1/geobase/geometry-calculations/)!

README.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Read the docs 👉 [geospatial.navibyte.dev](https://geospatial.navibyte.dev/)!
1313

1414
[![Dart](https://img.shields.io/badge/dart-%230175C2.svg?style=for-the-badge&logo=dart&logoColor=white)](https://dart.dev/) [![Flutter](https://img.shields.io/badge/Flutter-%2302569B.svg?style=for-the-badge&logo=Flutter&logoColor=white)](https://flutter.dev/)
1515

16+
✨ New (2024-11-10): The stable release with [ellipsoidal geodesy functions](https://geospatial.navibyte.dev/v1/geobase/ellipsoidal-geodesy/) letting you calculate distances, bearings, destination positions and intermediate points along the Earth surface accurately.
17+
1618
✨ New (2024-07-26): The stable version 1.3.0 with centroid, polylabel, point-in-polygon and other cartesian 2D calculations enhanced - [read more](https://geospatial.navibyte.dev/v1/geobase/geometry-calculations/)!
1719

1820
✨ New (2024-05-26): The new documentation website ([geospatial.navibyte.dev](https://geospatial.navibyte.dev/)) for [geobase](https://geospatial.navibyte.dev/v1/geobase/)
@@ -341,6 +343,13 @@ Code | Description
341343

342344
## :newspaper_roll: News
343345

346+
2024-11-10
347+
* ✨ The stable release with [ellipsoidal geodesy functions](https://geospatial.navibyte.dev/v1/geobase/ellipsoidal-geodesy/) letting you calculate distances, bearings, destination positions and intermediate points along the Earth surface accurately.
348+
* All docs: [geospatial.navibyte.dev](https://geospatial.navibyte.dev/).
349+
* Published packages at pub.dev:
350+
* [geobase version 1.4.0](https://pub.dev/packages/geobase/versions/1.4.0+1)
351+
* [geodata version 1.3.0](https://pub.dev/packages/geodata/versions/1.3.0)
352+
344353
2024-07-26
345354
* ✨ The [stable version 1.3.0](https://github.com/navibyte/geospatial/milestone/5) with centroid, polylabel, point-in-polygon and other cartesian 2D calculations enhanced - [read more](https://geospatial.navibyte.dev/v1/geobase/geometry-calculations/)!
346355
* All docs: [geospatial.navibyte.dev](https://geospatial.navibyte.dev/).
@@ -451,6 +460,7 @@ SDKs:
451460
* [Flutter](https://flutter.dev/)
452461

453462
Latest on Dart SDKs
463+
* [Dart 3.5](https://medium.com/dartlang/dart-3-5-6ca36259fa2f) with improvements in interoperability and an update on the Dart roadmap.
454464
* [Dart 3.4](https://medium.com/dartlang/dart-3-4-bd8d23b4462a) with WebAssembly (WASM) updates and the roadmap for Dart *macros*.
455465
* [Dart 3.3](https://medium.com/dartlang/dart-3-3-325bf2bf6c13) with extension types, evolving JavaScript-interoperability and experimental support for WebAssembly.
456466
* [Dart 3.2](https://medium.com/dartlang/dart-3-2-c8de8fe1b91f) with improved language & developer experience.
@@ -465,6 +475,7 @@ Latest on Dart SDKs
465475
* [Dart 2.12](https://medium.com/dartlang/announcing-dart-2-12-499a6e689c87) with sound null safety
466476

467477
Latest on Flutter SDKs
478+
* [Flutter 3.24](https://medium.com/flutter/whats-new-in-flutter-3-24-6c040f87d1e4) running on Dart 3.5 and with Multi-View Embedding and preview on Flutter GPU.
468479
* [Flutter 3.22](https://medium.com/flutter/whats-new-in-flutter-3-22-fbde6c164fe3) running on Dart 3.4 and stable support for WebAssembly (WASM), Graphics rendering enhancements, and AI updates.
469480
* [Flutter 3.19](https://medium.com/flutter/whats-new-in-flutter-3-19-58b1aae242d2) running on Dart 3.3 and Gemini API integration, Impeller updates, and Windows Arm64 support.
470481
* [Flutter 3.16](https://medium.com/flutter/whats-new-in-flutter-3-16-dba6cb1015d1) running on Dart 3.2 and with Material 3 by default, Impeller preview for Android, etc.
@@ -506,12 +517,10 @@ There are thousands of excellent libraries available at
506517
[pub.dev](https://pub.dev/).
507518

508519
Here listed only those that are used (depended directly) by code packages of
509-
this repository:
520+
this repository (on the latest release):
510521

511522
Package @ pub.dev | Code @ GitHub | Description
512523
----------------- | ------------- | -----------
513-
[collection](https://pub.dev/packages/collection) | [dart-lang/collection](https://github.com/dart-lang/collection) | Collections and utilities functions and classes related to collections.
514-
[equatable](https://pub.dev/packages/equatable) | [felangel/equatable](https://github.com/felangel/equatable) | Simplify Equality Comparisons | A Dart abstract class that helps to implement equality without needing to explicitly override == and hashCode.
515524
[http](https://pub.dev/packages/http) | [dart-lang/http](https://github.com/dart-lang/http) | A composable API for making HTTP requests in Dart.
516525
[meta](https://pub.dev/packages/meta) | [dart-lang/sdk](https://github.com/dart-lang/sdk/tree/master/pkg/meta) | This package defines annotations that can be used by the tools that are shipped with the Dart SDK.
517526
[proj4dart](https://pub.dev/packages/proj4dart) | [maRci002/proj4dart](https://github.com/maRci002/proj4dart) | Proj4dart is a Dart library to transform point coordinates from one coordinate system to another, including datum transformations (Dart version of proj4js/proj4js).
@@ -521,4 +530,6 @@ In some previous releases also following are utilized:
521530

522531
Package @ pub.dev | Code @ GitHub | Description
523532
----------------- | ------------- | -----------
533+
[collection](https://pub.dev/packages/collection) | [dart-lang/collection](https://github.com/dart-lang/collection) | Collections and utilities functions and classes related to collections.
534+
[equatable](https://pub.dev/packages/equatable) | [felangel/equatable](https://github.com/felangel/equatable) | Simplify Equality Comparisons | A Dart abstract class that helps to implement equality without needing to explicitly override == and hashCode.
524535
[synchronized](https://pub.dev/packages/synchronized) | [tekartik/synchronized.dart](https://github.com/tekartik/synchronized.dart/tree/master/synchronized) | Basic lock mechanism to prevent concurrent access to asynchronous code.

0 commit comments

Comments
 (0)