Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 7.0.0-alpha.2 #2503

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ We intend to keep making breaking changes before 7.0.0 is fully released. If you
- [`@turf/boolean-within`](boolean-within) Fix multipoint checks (#2216)
- [`@turf/points-within-polygon`](points-within-polygon) Fix dropped properties on MultiPoint results (#2227)
- [`@turf/random`](random) Throws error on invalid bbox inputs (#2172)
- [`@turf/boolean-parallel`](boolean-parallel) Lines with 180 degree angle between them are also considered parallel (#2475)

## 📖 Documentation
- [`@turf/bbox`][bbox] Improve documentation (#2153)
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
}
},
"npmClient": "yarn",
"version": "7.0.0-alpha.1"
"version": "7.0.0-alpha.2"
}
12 changes: 6 additions & 6 deletions packages/turf-along/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/along",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf along module",
"author": "Turf Authors",
"license": "MIT",
Expand Down Expand Up @@ -58,11 +58,11 @@
"typescript": "*"
},
"dependencies": {
"@turf/bearing": "^7.0.0-alpha.1",
"@turf/destination": "^7.0.0-alpha.1",
"@turf/distance": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/bearing": "^7.0.0-alpha.2",
"@turf/destination": "^7.0.0-alpha.2",
"@turf/distance": "^7.0.0-alpha.2",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
16 changes: 8 additions & 8 deletions packages/turf-angle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/angle",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf angle module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -48,9 +48,9 @@
"test:tape": "tsx test.js"
},
"devDependencies": {
"@turf/distance": "^7.0.0-alpha.1",
"@turf/sector": "^7.0.0-alpha.1",
"@turf/truncate": "^7.0.0-alpha.1",
"@turf/distance": "^7.0.0-alpha.2",
"@turf/sector": "^7.0.0-alpha.2",
"@turf/truncate": "^7.0.0-alpha.2",
"@types/tape": "*",
"benchmark": "*",
"glob": "*",
Expand All @@ -63,10 +63,10 @@
"write-json-file": "*"
},
"dependencies": {
"@turf/bearing": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/rhumb-bearing": "^7.0.0-alpha.1",
"@turf/bearing": "^7.0.0-alpha.2",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"@turf/rhumb-bearing": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
6 changes: 3 additions & 3 deletions packages/turf-area/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/area",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf area module",
"author": "Turf Authors",
"license": "MIT",
Expand Down Expand Up @@ -58,8 +58,8 @@
"write-json-file": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/meta": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/meta": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
8 changes: 4 additions & 4 deletions packages/turf-bbox-clip/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/bbox-clip",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf bbox-clip module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -53,7 +53,7 @@
"test:tape": "tsx test.js"
},
"devDependencies": {
"@turf/bbox": "^7.0.0-alpha.1",
"@turf/bbox": "^7.0.0-alpha.2",
"@types/tape": "*",
"benchmark": "*",
"load-json-file": "*",
Expand All @@ -65,8 +65,8 @@
"write-json-file": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
4 changes: 2 additions & 2 deletions packages/turf-bbox-polygon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/bbox-polygon",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf bbox-polygon module",
"author": "Turf Authors",
"license": "MIT",
Expand Down Expand Up @@ -57,7 +57,7 @@
"typescript": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
6 changes: 3 additions & 3 deletions packages/turf-bbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/bbox",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf bbox module",
"author": "Turf Authors",
"license": "MIT",
Expand Down Expand Up @@ -58,8 +58,8 @@
"typescript": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/meta": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/meta": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
8 changes: 4 additions & 4 deletions packages/turf-bearing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/bearing",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf bearing module",
"author": "Turf Authors",
"license": "MIT",
Expand Down Expand Up @@ -45,7 +45,7 @@
"test:tape": "tsx test.js"
},
"devDependencies": {
"@turf/destination": "^7.0.0-alpha.1",
"@turf/destination": "^7.0.0-alpha.2",
"@types/tape": "*",
"benchmark": "*",
"npm-run-all": "*",
Expand All @@ -56,8 +56,8 @@
"write-json-file": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
6 changes: 3 additions & 3 deletions packages/turf-bezier-spline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/bezier-spline",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf bezier-spline module",
"author": "Turf Authors",
"license": "MIT",
Expand Down Expand Up @@ -59,8 +59,8 @@
"write-json-file": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
6 changes: 3 additions & 3 deletions packages/turf-boolean-clockwise/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/boolean-clockwise",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf boolean-clockwise module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -63,8 +63,8 @@
"typescript": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
6 changes: 3 additions & 3 deletions packages/turf-boolean-concave/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/boolean-concave",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf boolean-concave module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -62,8 +62,8 @@
"typescript": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
12 changes: 6 additions & 6 deletions packages/turf-boolean-contains/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/boolean-contains",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf boolean-contains module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -64,11 +64,11 @@
"typescript": "*"
},
"dependencies": {
"@turf/bbox": "^7.0.0-alpha.1",
"@turf/boolean-point-in-polygon": "^7.0.0-alpha.1",
"@turf/boolean-point-on-line": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/bbox": "^7.0.0-alpha.2",
"@turf/boolean-point-in-polygon": "^7.0.0-alpha.2",
"@turf/boolean-point-on-line": "^7.0.0-alpha.2",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
12 changes: 6 additions & 6 deletions packages/turf-boolean-crosses/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/boolean-crosses",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf boolean-crosses module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -63,11 +63,11 @@
"typescript": "*"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/line-intersect": "^7.0.0-alpha.1",
"@turf/polygon-to-line": "^7.0.0-alpha.1",
"@turf/boolean-point-in-polygon": "^7.0.0-alpha.2",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"@turf/line-intersect": "^7.0.0-alpha.2",
"@turf/polygon-to-line": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
12 changes: 6 additions & 6 deletions packages/turf-boolean-disjoint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/boolean-disjoint",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf boolean-disjoint module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -62,11 +62,11 @@
"typescript": "*"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/line-intersect": "^7.0.0-alpha.1",
"@turf/meta": "^7.0.0-alpha.1",
"@turf/polygon-to-line": "^7.0.0-alpha.1",
"@turf/boolean-point-in-polygon": "^7.0.0-alpha.2",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/line-intersect": "^7.0.0-alpha.2",
"@turf/meta": "^7.0.0-alpha.2",
"@turf/polygon-to-line": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
8 changes: 4 additions & 4 deletions packages/turf-boolean-equal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/boolean-equal",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf boolean-equal module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -67,9 +67,9 @@
"typescript": "*"
},
"dependencies": {
"@turf/clean-coords": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/clean-coords": "^7.0.0-alpha.2",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"geojson-equality": "0.1.6",
"tslib": "^2.3.0"
}
Expand Down
8 changes: 4 additions & 4 deletions packages/turf-boolean-intersects/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/boolean-intersects",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf boolean-intersects module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -62,9 +62,9 @@
"typescript": "*"
},
"dependencies": {
"@turf/boolean-disjoint": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/meta": "^7.0.0-alpha.1",
"@turf/boolean-disjoint": "^7.0.0-alpha.2",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/meta": "^7.0.0-alpha.2",
"tslib": "^2.3.0"
}
}
12 changes: 6 additions & 6 deletions packages/turf-boolean-overlap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turf/boolean-overlap",
"version": "7.0.0-alpha.1",
"version": "7.0.0-alpha.2",
"description": "turf boolean-overlap module",
"author": "Turf Authors",
"contributors": [
Expand Down Expand Up @@ -66,11 +66,11 @@
"typescript": "*"
},
"dependencies": {
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/invariant": "^7.0.0-alpha.1",
"@turf/line-intersect": "^7.0.0-alpha.1",
"@turf/line-overlap": "^7.0.0-alpha.1",
"@turf/meta": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"@turf/line-intersect": "^7.0.0-alpha.2",
"@turf/line-overlap": "^7.0.0-alpha.2",
"@turf/meta": "^7.0.0-alpha.2",
"geojson-equality": "0.1.6",
"tslib": "^2.3.0"
}
Expand Down
Loading