Skip to content

Commit 388e147

Browse files
committed
pub(geodata): stable release 1.3.0
1 parent cb705fd commit 388e147

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

dart/geodata/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
## 1.4.0
1+
## 1.3.0
22

3-
⚠️ NOTE: Version 1.4.0 currently under development (1.4.0-dev.0).
3+
✨ New (2024-11-10): The stable version 1.3.0 with some refactoring (the
4+
dependecy to `equatable` removed, the constraint on `http` is now
5+
`>=0.13.0 <2.0.0` instead of `^0.13.0` that did not allow latest 1.0+ versions),
6+
code maintenance and documentation updates.
47

5-
[geodata release 1.4.0](https://github.com/navibyte/geospatial/milestone/6)
8+
[geodata release 1.3.0](https://github.com/navibyte/geospatial/milestone/6)
69

710
🛠 Refactoring:
811
* [Change some external dependency version requirements to any - at least for http package #247](https://github.com/navibyte/geospatial/issues/247)

dart/geodata/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@ Geospatial feature service Web APIs with support for
88

99
## Features
1010

11+
✨ New (2024-11-10): The stable version 1.3.0 with some refactoring (the
12+
dependecy to `equatable` removed, the constraint on `http` is now
13+
`>=0.13.0 <2.0.0` instead of `^0.13.0` that did not allow latest 1.0+ versions),
14+
code maintenance and documentation updates.
15+
1116
✨ New (2024-05-26): The new documentation website ([geospatial.navibyte.dev](https://geospatial.navibyte.dev/)) for the [geodata](https://geospatial.navibyte.dev/v1/geodata/)
1217
package documentation published along with the stable version 1.2.0.
1318

1419
✨ 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.
1520

16-
✨ 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.
17-
18-
✨ New (2023-07): better client-side support for OGC API Features (Part 1 and 2).
19-
2021
Key features:
2122

2223
* 🪄 Client-side data source abstraction for geospatial feature service Web APIs.
@@ -201,7 +202,7 @@ Add the dependency in your `pubspec.yaml`:
201202

202203
```yaml
203204
dependencies:
204-
geodata: ^1.2.1
205+
geodata: ^1.4.0
205206
```
206207
207208
Import it:
@@ -241,7 +242,6 @@ Package | Exports also | Description
241242
**ogcapi_features_client** | common, core, formats | A client-side data source to read features from OGC API Features services.
242243

243244
External packages `geodata` is depending on:
244-
* [equatable](https://pub.dev/packages/equatable) for equality and hash utils
245245
* [geobase](https://pub.dev/packages/geobase) for base geospatial data structures
246246
* [http](https://pub.dev/packages/http) for a http client
247247
* [meta](https://pub.dev/packages/meta) for annotations

dart/geodata/pubspec.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: geodata
22
description: A geospatial client to read GeoJSON and OGC API Features data sources.
3-
version: 1.4.0-dev.0
3+
version: 1.3.0
44
repository: https://github.com/navibyte/geospatial
55
homepage: https://geospatial.navibyte.dev/
6-
publish_to: none
76

87
topics:
98
- geojson
@@ -16,13 +15,12 @@ environment:
1615
sdk: '>=2.17.0 <4.0.0'
1716

1817
dependencies:
19-
#http: ^0.13.0
20-
http: any
18+
http: '>=0.13.0 <2.0.0'
2119
meta: ^1.7.0
2220

23-
#geobase: ^1.1.0
24-
geobase:
25-
path: ../geobase
21+
geobase: ^1.1.0
22+
#geobase:
23+
# path: ../geobase
2624

2725
dev_dependencies:
2826
test: ^1.24.0

0 commit comments

Comments
 (0)