diff --git a/.gitignore b/.gitignore index 360fc0f5..bd71dd88 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ coverage/ .idea/ +.DS_Store \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 36864a3f..b70908c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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 diff --git a/README.md b/README.md index d6e131ff..180e7c94 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # turf.dart -ℹ️ Looking for maintainers as a work student position in Germany: Write an email to [jobs@scalabs.de](mailto:jobs@scalabs.de) ℹ️ - [![pub package](https://img.shields.io/pub/v/turf.svg)](https://pub.dev/packages/turf) THIS PROJECT IS WORK IN PROCESS @@ -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) @@ -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) @@ -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 \ No newline at end of file diff --git a/pubspec.yaml b/pubspec.yaml index d2f9c492..2bf83faa 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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 diff --git a/test/.DS_Store b/test/.DS_Store deleted file mode 100644 index 8dca1b0c..00000000 Binary files a/test/.DS_Store and /dev/null differ diff --git a/test/examples/.DS_Store b/test/examples/.DS_Store deleted file mode 100644 index 0c63b13f..00000000 Binary files a/test/examples/.DS_Store and /dev/null differ diff --git a/test/examples/booleans/.DS_Store b/test/examples/booleans/.DS_Store deleted file mode 100644 index f22ab784..00000000 Binary files a/test/examples/booleans/.DS_Store and /dev/null differ diff --git a/test/examples/booleans/disjoint/.DS_Store b/test/examples/booleans/disjoint/.DS_Store deleted file mode 100644 index 78e31eef..00000000 Binary files a/test/examples/booleans/disjoint/.DS_Store and /dev/null differ