Skip to content

Commit a0b9304

Browse files
authored
Prepare release 0.0.9 (#162)
* 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
1 parent 620d1f9 commit a0b9304

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ coverage/
1414

1515
.idea/
1616

17+
.DS_Store

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.0.9
2+
3+
- Implements `length`, `along` [#153](https://github.com/dartclub/turf_dart/pull/153)
4+
- Documentation: Improves pub.dev scores by fixing bad links in Readme.md
5+
16
## 0.0.8
27

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

3944
## 0.0.5
4045

41-
- Implements *all* meta functions and`lineSegment`
46+
- Implements *all* meta functions and `lineSegment`
4247
- Adds a lot of documentation
4348
- Several bug and type fixes
4449

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# turf.dart
22

3-
ℹ️ Looking for maintainers as a work student position in Germany: Write an email to [[email protected]](mailto:[email protected]) ℹ️
4-
53
[![pub package](https://img.shields.io/pub/v/turf.svg)](https://pub.dev/packages/turf)
64

75
THIS PROJECT IS WORK IN PROCESS
@@ -123,7 +121,7 @@ Any new benchmarks must be named `*_benchmark.dart` and reside in the
123121
- [ ] dissolve
124122
- [ ] intersect
125123
- [ ] lineOffset
126-
- [x] [polygonSmooth](ttps://github.com/dartclub/turf_dart/blob/main/lib/src/polygon_smooth.dart)
124+
- [x] [polygonSmooth](https://github.com/dartclub/turf_dart/blob/main/lib/src/polygon_smooth.dart)
127125
- [ ] simplify
128126
- [ ] tesselate
129127
- [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
234232
- [x] [booleanCrosses](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_crosses.dart)
235233
- [x] [booleanDisjoint](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_disjoint.dart)
236234
- [x] [booleanEqual](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_equal.dart)
237-
- [x] [booleanIntersects](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_intersect.dart)
235+
- [x] [booleanIntersects](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_intersects.dart)
238236
- [ ] booleanOverlap
239237
- [x] [booleanParallel](https://github.com/dartclub/turf_dart/blob/main/lib/src/booleans/boolean_parallel.dart)
240238
- [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
252250
- [x] [radiansToLength](https://github.com/dartclub/turf_dart/blob/main/lib/src/helpers.dart)
253251
- [x] [radiansToDegrees](https://github.com/dartclub/turf_dart/blob/main/lib/src/helpers.dart)
254252
- [ ] toMercator
255-
- [ ] toWgs84
253+
- [ ] toWgs84

pubspec.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
name: turf
22
description: A turf.js-like geospatial analysis library working with GeoJSON, written in pure Dart.
3-
version: 0.0.8
3+
version: 0.0.9
44
environment:
5-
sdk: ">=2.15.0 <4.0.0"
5+
sdk: ">=2.17.0 <4.0.0"
66
homepage: https://github.com/dartclub/turf_dart
77
repository: https://github.com/dartclub/turf_dart
88

99
dependencies:
1010
json_annotation: ^4.8.1
11-
turf_equality: ^0.0.2
12-
turf_pip: ^0.0.1+1
11+
turf_equality: ^0.0.3
12+
turf_pip: ^0.0.2
1313
rbush: ^1.1.0
14-
sweepline_intersections: ^0.0.3+1
14+
sweepline_intersections: ^0.0.4
1515

1616
dev_dependencies:
17-
lints: ^2.1.1
17+
lints: ^3.0.0
1818
test: ^1.24.3
1919
json_serializable: ^6.7.0
2020
build_runner: ^2.4.5
21-
analyzer: ^5.13.0
21+
analyzer: ^6.4.0
2222
benchmark: ^0.3.0

test/.DS_Store

-6 KB
Binary file not shown.

test/examples/.DS_Store

-10 KB
Binary file not shown.

test/examples/booleans/.DS_Store

-8 KB
Binary file not shown.
-6 KB
Binary file not shown.

0 commit comments

Comments
 (0)