Skip to content

Commit

Permalink
Prepare release 0.0.9 (#162)
Browse files Browse the repository at this point in the history
* Update Dart SDK version in pubspec.yaml

* Update README.md

* Remove .DS_Store files

* Update changelog

* Update package version to 0.0.9

* Update dependencies
  • Loading branch information
jsiedentop authored Jan 31, 2024
1 parent 620d1f9 commit a0b9304
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ coverage/

.idea/

.DS_Store
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.0.9

- Implements `length`, `along` [#153](https://github.com/dartclub/turf_dart/pull/153)
- Documentation: Improves pub.dev scores by fixing bad links in Readme.md

## 0.0.8

- Implements `transformRotate`, `rhumbDistance`, `rhumbDestination`, `centroid` [#147](https://github.com/dartclub/turf_dart/pull/147)
Expand Down Expand Up @@ -38,7 +43,7 @@

## 0.0.5

- Implements *all* meta functions and`lineSegment`
- Implements *all* meta functions and `lineSegment`
- Adds a lot of documentation
- Several bug and type fixes

Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# turf.dart

ℹ️ Looking for maintainers as a work student position in Germany: Write an email to [[email protected]](mailto:[email protected]) ℹ️

[![pub package](https://img.shields.io/pub/v/turf.svg)](https://pub.dev/packages/turf)

THIS PROJECT IS WORK IN PROCESS
Expand Down Expand Up @@ -123,7 +121,7 @@ Any new benchmarks must be named `*_benchmark.dart` and reside in the
- [ ] dissolve
- [ ] intersect
- [ ] lineOffset
- [x] [polygonSmooth](ttps://github.com/dartclub/turf_dart/blob/main/lib/src/polygon_smooth.dart)
- [x] [polygonSmooth](https://github.com/dartclub/turf_dart/blob/main/lib/src/polygon_smooth.dart)
- [ ] simplify
- [ ] tesselate
- [x] [transformRotate](https://github.com/dartclub/turf_dart/blob/main/lib/src/transform_rotate.dart)
Expand Down Expand Up @@ -234,7 +232,7 @@ Any new benchmarks must be named `*_benchmark.dart` and reside in the
- [x] [booleanCrosses](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_crosses.dart)
- [x] [booleanDisjoint](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_disjoint.dart)
- [x] [booleanEqual](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_equal.dart)
- [x] [booleanIntersects](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_intersect.dart)
- [x] [booleanIntersects](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_intersects.dart)
- [ ] booleanOverlap
- [x] [booleanParallel](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_parallel.dart)
- [x] [booleanPointInPolygon](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_point_in_polygon.dart)
Expand All @@ -252,4 +250,4 @@ Any new benchmarks must be named `*_benchmark.dart` and reside in the
- [x] [radiansToLength](https://github.com/dartclub/turf_dart/blob/main/lib/src/helpers.dart)
- [x] [radiansToDegrees](https://github.com/dartclub/turf_dart/blob/main/lib/src/helpers.dart)
- [ ] toMercator
- [ ] toWgs84
- [ ] toWgs84
14 changes: 7 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: turf
description: A turf.js-like geospatial analysis library working with GeoJSON, written in pure Dart.
version: 0.0.8
version: 0.0.9
environment:
sdk: ">=2.15.0 <4.0.0"
sdk: ">=2.17.0 <4.0.0"
homepage: https://github.com/dartclub/turf_dart
repository: https://github.com/dartclub/turf_dart

dependencies:
json_annotation: ^4.8.1
turf_equality: ^0.0.2
turf_pip: ^0.0.1+1
turf_equality: ^0.0.3
turf_pip: ^0.0.2
rbush: ^1.1.0
sweepline_intersections: ^0.0.3+1
sweepline_intersections: ^0.0.4

dev_dependencies:
lints: ^2.1.1
lints: ^3.0.0
test: ^1.24.3
json_serializable: ^6.7.0
build_runner: ^2.4.5
analyzer: ^5.13.0
analyzer: ^6.4.0
benchmark: ^0.3.0
Binary file removed test/.DS_Store
Binary file not shown.
Binary file removed test/examples/.DS_Store
Binary file not shown.
Binary file removed test/examples/booleans/.DS_Store
Binary file not shown.
Binary file removed test/examples/booleans/disjoint/.DS_Store
Binary file not shown.

0 comments on commit a0b9304

Please sign in to comment.