Skip to content

Commit

Permalink
pub(geodata): stable release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
navispatial committed Nov 10, 2024
1 parent cb705fd commit 388e147
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
9 changes: 6 additions & 3 deletions dart/geodata/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
12 changes: 6 additions & 6 deletions dart/geodata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -201,7 +202,7 @@ Add the dependency in your `pubspec.yaml`:

```yaml
dependencies:
geodata: ^1.2.1
geodata: ^1.4.0
```
Import it:
Expand Down Expand Up @@ -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
Expand Down
12 changes: 5 additions & 7 deletions dart/geodata/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit 388e147

Please sign in to comment.