From 388e1478384103577a738eb5eddd6e7a69c27836 Mon Sep 17 00:00:00 2001 From: navispatial <88932567+navispatial@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:03:40 +0200 Subject: [PATCH] pub(geodata): stable release 1.3.0 --- dart/geodata/CHANGELOG.md | 9 ++++++--- dart/geodata/README.md | 12 ++++++------ dart/geodata/pubspec.yaml | 12 +++++------- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/dart/geodata/CHANGELOG.md b/dart/geodata/CHANGELOG.md index 592e1088..0e4625b1 100644 --- a/dart/geodata/CHANGELOG.md +++ b/dart/geodata/CHANGELOG.md @@ -1,8 +1,11 @@ -## 1.4.0 +## 1.3.0 -⚠️ NOTE: Version 1.4.0 currently under development (1.4.0-dev.0). +✨ New (2024-11-10): The stable version 1.3.0 with some refactoring (the +dependecy to `equatable` removed, the constraint on `http` is now +`>=0.13.0 <2.0.0` instead of `^0.13.0` that did not allow latest 1.0+ versions), +code maintenance and documentation updates. -[geodata release 1.4.0](https://github.com/navibyte/geospatial/milestone/6) +[geodata release 1.3.0](https://github.com/navibyte/geospatial/milestone/6) 🛠 Refactoring: * [Change some external dependency version requirements to any - at least for http package #247](https://github.com/navibyte/geospatial/issues/247) diff --git a/dart/geodata/README.md b/dart/geodata/README.md index d8635bda..32e2bca8 100644 --- a/dart/geodata/README.md +++ b/dart/geodata/README.md @@ -8,15 +8,16 @@ Geospatial feature service Web APIs with support for ## Features +✨ New (2024-11-10): The stable version 1.3.0 with some refactoring (the +dependecy to `equatable` removed, the constraint on `http` is now +`>=0.13.0 <2.0.0` instead of `^0.13.0` that did not allow latest 1.0+ versions), +code maintenance and documentation updates. + ✨ New (2024-05-26): The new documentation website ([geospatial.navibyte.dev](https://geospatial.navibyte.dev/)) for the [geodata](https://geospatial.navibyte.dev/v1/geodata/) package documentation published along with the stable version 1.2.0. ✨ New (2024-04-22): The stable version 1.1.0 adds support for Newline-delimited GeoJSON. See the related [blog post](https://medium.com/@navibyte/decode-and-encode-geojson-wkt-and-wkb-in-dart-and-flutter-apps-ab2ef4ece2f1) about geobase changes. -✨ New (2023-10): The stable version 1.0.0 is now ready. See also the article [Geospatial tools for Dart - version 1.0 published](https://medium.com/@navibyte/geospatial-tools-for-dart-version-1-0-published-0f9673e510b3) at Medium. - -✨ New (2023-07): better client-side support for OGC API Features (Part 1 and 2). - Key features: * 🪄 Client-side data source abstraction for geospatial feature service Web APIs. @@ -201,7 +202,7 @@ Add the dependency in your `pubspec.yaml`: ```yaml dependencies: - geodata: ^1.2.1 + geodata: ^1.4.0 ``` Import it: @@ -241,7 +242,6 @@ Package | Exports also | Description **ogcapi_features_client** | common, core, formats | A client-side data source to read features from OGC API Features services. External packages `geodata` is depending on: -* [equatable](https://pub.dev/packages/equatable) for equality and hash utils * [geobase](https://pub.dev/packages/geobase) for base geospatial data structures * [http](https://pub.dev/packages/http) for a http client * [meta](https://pub.dev/packages/meta) for annotations diff --git a/dart/geodata/pubspec.yaml b/dart/geodata/pubspec.yaml index 828d05a2..de5a2d91 100644 --- a/dart/geodata/pubspec.yaml +++ b/dart/geodata/pubspec.yaml @@ -1,9 +1,8 @@ name: geodata description: A geospatial client to read GeoJSON and OGC API Features data sources. -version: 1.4.0-dev.0 +version: 1.3.0 repository: https://github.com/navibyte/geospatial homepage: https://geospatial.navibyte.dev/ -publish_to: none topics: - geojson @@ -16,13 +15,12 @@ environment: sdk: '>=2.17.0 <4.0.0' dependencies: - #http: ^0.13.0 - http: any + http: '>=0.13.0 <2.0.0' meta: ^1.7.0 - #geobase: ^1.1.0 - geobase: - path: ../geobase + geobase: ^1.1.0 + #geobase: + # path: ../geobase dev_dependencies: test: ^1.24.0