From 779156875fec377f342ea71cde8eeaa49d1f89ea Mon Sep 17 00:00:00 2001 From: thinkinggis Date: Thu, 26 Mar 2020 20:03:59 +0800 Subject: [PATCH] chore: publish --- CHANGELOG.md | 12 ++++++++++++ lerna.json | 2 +- packages/component/CHANGELOG.md | 8 ++++++++ packages/component/package.json | 6 +++--- packages/core/CHANGELOG.md | 11 +++++++++++ packages/core/package.json | 4 ++-- packages/draw/CHANGELOG.md | 8 ++++++++ packages/draw/package.json | 4 ++-- packages/l7/CHANGELOG.md | 8 ++++++++ packages/l7/package.json | 12 ++++++------ packages/layers/CHANGELOG.md | 11 +++++++++++ packages/layers/package.json | 8 ++++---- packages/maps/CHANGELOG.md | 8 ++++++++ packages/maps/package.json | 6 +++--- packages/react/CHANGELOG.md | 8 ++++++++ packages/react/package.json | 6 +++--- packages/renderer/CHANGELOG.md | 8 ++++++++ packages/renderer/package.json | 4 ++-- packages/scene/CHANGELOG.md | 8 ++++++++ packages/scene/package.json | 12 ++++++------ packages/source/CHANGELOG.md | 8 ++++++++ packages/source/package.json | 6 +++--- packages/utils/CHANGELOG.md | 8 ++++++++ packages/utils/package.json | 2 +- 24 files changed, 142 insertions(+), 36 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a83c096c9..d70e3feff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + + +### Bug Fixes + +* 3d 热力图抖动问题 fixes [#138](https://github.com/antvis/L7/issues/138) [#263](https://github.com/antvis/L7/issues/263) ([d56e8d6](https://github.com/antvis/L7/commit/d56e8d6205942ca12fa7ac3dfd226aecbb850ed2)) +* 拾取 invalid x offset ([8282007](https://github.com/antvis/L7/commit/82820077f40998e156337b266623309eff6b2d60)) + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 486a66101b..472f41be03 100644 --- a/lerna.json +++ b/lerna.json @@ -14,7 +14,7 @@ "message": "chore: publish" } }, - "version": "2.1.7", + "version": "2.1.8", "npmClient": "yarn", "useWorkspaces": true, "publishConfig": { diff --git a/packages/component/CHANGELOG.md b/packages/component/CHANGELOG.md index c1b26330cb..2bf9ffc24a 100644 --- a/packages/component/CHANGELOG.md +++ b/packages/component/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7-component + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7-component diff --git a/packages/component/package.json b/packages/component/package.json index 9be3ea7a9c..a687f01684 100644 --- a/packages/component/package.json +++ b/packages/component/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-component", - "version": "2.1.7", + "version": "2.1.8", "description": "", "main": "lib/index.js", "module": "es/index.js", @@ -24,8 +24,8 @@ "author": "lzxue", "license": "ISC", "dependencies": { - "@antv/l7-core": "^2.1.7", - "@antv/l7-utils": "^2.1.7", + "@antv/l7-core": "^2.1.8", + "@antv/l7-utils": "^2.1.8", "@babel/runtime": "^7.7.7", "eventemitter3": "^4.0.0", "inversify": "^5.0.1", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 3d544c678a..680fff34df 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + + +### Bug Fixes + +* 拾取 invalid x offset ([8282007](https://github.com/antvis/L7/commit/82820077f40998e156337b266623309eff6b2d60)) + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7-core diff --git a/packages/core/package.json b/packages/core/package.json index 3f17155fd9..68ebf82247 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-core", - "version": "2.1.7", + "version": "2.1.8", "description": "", "main": "lib/index.js", "module": "es/index.js", @@ -23,7 +23,7 @@ "license": "ISC", "dependencies": { "@antv/async-hook": "^2.1.0", - "@antv/l7-utils": "^2.1.7", + "@antv/l7-utils": "^2.1.8", "@babel/runtime": "^7.7.7", "@mapbox/tiny-sdf": "^1.1.1", "ajv": "^6.10.2", diff --git a/packages/draw/CHANGELOG.md b/packages/draw/CHANGELOG.md index 1526896b5b..cedb343895 100644 --- a/packages/draw/CHANGELOG.md +++ b/packages/draw/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7-draw + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7-draw diff --git a/packages/draw/package.json b/packages/draw/package.json index 9a4abe4280..ca931971c1 100644 --- a/packages/draw/package.json +++ b/packages/draw/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-draw", - "version": "2.1.7", + "version": "2.1.8", "description": "L7 Draw moudules", "keywords": [], "author": "thinkinggis ", @@ -33,7 +33,7 @@ "test": "jest" }, "dependencies": { - "@antv/l7": "^2.1.7", + "@antv/l7": "^2.1.8", "@babel/runtime": "^7.7.7", "@turf/circle": "^6.0.1", "@turf/distance": "^6.0.1", diff --git a/packages/l7/CHANGELOG.md b/packages/l7/CHANGELOG.md index 30a6461117..ae04f38f0f 100644 --- a/packages/l7/CHANGELOG.md +++ b/packages/l7/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7 + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7 diff --git a/packages/l7/package.json b/packages/l7/package.json index 244a0ab7f9..6326bc7145 100644 --- a/packages/l7/package.json +++ b/packages/l7/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7", - "version": "2.1.7", + "version": "2.1.8", "description": "A Large-scale WebGL-powered Geospatial Data Visualization", "main": "lib/index.js", "module": "es/index.js", @@ -24,11 +24,11 @@ "author": "antv", "license": "MIT", "dependencies": { - "@antv/l7-component": "^2.1.7", - "@antv/l7-core": "^2.1.7", - "@antv/l7-layers": "^2.1.7", - "@antv/l7-maps": "^2.1.7", - "@antv/l7-scene": "^2.1.7", + "@antv/l7-component": "^2.1.8", + "@antv/l7-core": "^2.1.8", + "@antv/l7-layers": "^2.1.8", + "@antv/l7-maps": "^2.1.8", + "@antv/l7-scene": "^2.1.8", "@babel/runtime": "^7.7.7" }, "gitHead": "a5d354b66873f700730248d015c5e539c54b34b7", diff --git a/packages/layers/CHANGELOG.md b/packages/layers/CHANGELOG.md index 516db9d0f4..2839106d3c 100644 --- a/packages/layers/CHANGELOG.md +++ b/packages/layers/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + + +### Bug Fixes + +* 3d 热力图抖动问题 fixes [#138](https://github.com/antvis/L7/issues/138) [#263](https://github.com/antvis/L7/issues/263) ([d56e8d6](https://github.com/antvis/L7/commit/d56e8d6205942ca12fa7ac3dfd226aecbb850ed2)) + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) diff --git a/packages/layers/package.json b/packages/layers/package.json index 56865f55f6..2c876ba984 100644 --- a/packages/layers/package.json +++ b/packages/layers/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-layers", - "version": "2.1.7", + "version": "2.1.8", "description": "L7's collection of built-in layers", "main": "lib/index.js", "module": "es/index.js", @@ -23,9 +23,9 @@ "license": "ISC", "dependencies": { "@antv/async-hook": "^2.1.0", - "@antv/l7-core": "^2.1.7", - "@antv/l7-source": "^2.1.7", - "@antv/l7-utils": "^2.1.7", + "@antv/l7-core": "^2.1.8", + "@antv/l7-source": "^2.1.8", + "@antv/l7-utils": "^2.1.8", "@babel/runtime": "^7.7.7", "@mapbox/martini": "^0.1.0", "@turf/meta": "^6.0.2", diff --git a/packages/maps/CHANGELOG.md b/packages/maps/CHANGELOG.md index b7e698dc17..1e016d2a74 100644 --- a/packages/maps/CHANGELOG.md +++ b/packages/maps/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7-maps + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7-maps diff --git a/packages/maps/package.json b/packages/maps/package.json index e55171163e..f554633540 100644 --- a/packages/maps/package.json +++ b/packages/maps/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-maps", - "version": "2.1.7", + "version": "2.1.8", "description": "", "main": "lib/index.js", "module": "es/index.js", @@ -25,8 +25,8 @@ "author": "xiaoiver", "license": "ISC", "dependencies": { - "@antv/l7-core": "^2.1.7", - "@antv/l7-utils": "^2.1.7", + "@antv/l7-core": "^2.1.8", + "@antv/l7-utils": "^2.1.8", "@babel/runtime": "^7.7.7", "@types/amap-js-api": "^1.4.6", "gl-matrix": "^3.1.0", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index f79a73eceb..c7604cdc39 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7-react + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7-react diff --git a/packages/react/package.json b/packages/react/package.json index dde9876025..6234e6fc48 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-react", - "version": "2.1.7", + "version": "2.1.8", "description": "", "main": "lib/index.js", "module": "es/index.js", @@ -24,8 +24,8 @@ "author": "lzxue", "license": "ISC", "dependencies": { - "@antv/l7": "^2.1.7", - "@antv/l7-maps": "^2.1.7", + "@antv/l7": "^2.1.8", + "@antv/l7-maps": "^2.1.8", "@babel/runtime": "^7.7.7", "load-styles": "^2.0.0" }, diff --git a/packages/renderer/CHANGELOG.md b/packages/renderer/CHANGELOG.md index d095d840b4..009a95becf 100644 --- a/packages/renderer/CHANGELOG.md +++ b/packages/renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7-renderer + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7-renderer diff --git a/packages/renderer/package.json b/packages/renderer/package.json index 2765866cfa..2379da1b7f 100644 --- a/packages/renderer/package.json +++ b/packages/renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-renderer", - "version": "2.1.7", + "version": "2.1.8", "description": "", "main": "lib/index.js", "module": "es/index.js", @@ -25,7 +25,7 @@ "gl": "^4.4.0" }, "dependencies": { - "@antv/l7-core": "^2.1.7", + "@antv/l7-core": "^2.1.8", "@babel/runtime": "^7.7.7", "inversify": "^5.0.1", "lodash": "^4.17.15", diff --git a/packages/scene/CHANGELOG.md b/packages/scene/CHANGELOG.md index 7e963e68b0..c1ce3d3f2a 100644 --- a/packages/scene/CHANGELOG.md +++ b/packages/scene/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7-scene + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7-scene diff --git a/packages/scene/package.json b/packages/scene/package.json index b8ade1a6be..0e42df8cfe 100644 --- a/packages/scene/package.json +++ b/packages/scene/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-scene", - "version": "2.1.7", + "version": "2.1.8", "description": "", "main": "lib/index.js", "module": "es/index.js", @@ -22,11 +22,11 @@ "author": "xiaoiver", "license": "ISC", "dependencies": { - "@antv/l7-component": "^2.1.7", - "@antv/l7-core": "^2.1.7", - "@antv/l7-maps": "^2.1.7", - "@antv/l7-renderer": "^2.1.7", - "@antv/l7-utils": "^2.1.7", + "@antv/l7-component": "^2.1.8", + "@antv/l7-core": "^2.1.8", + "@antv/l7-maps": "^2.1.8", + "@antv/l7-renderer": "^2.1.8", + "@antv/l7-utils": "^2.1.8", "@babel/runtime": "^7.7.7", "inversify": "^5.0.1", "mapbox-gl": "^1.2.1", diff --git a/packages/source/CHANGELOG.md b/packages/source/CHANGELOG.md index cab3d3b3f0..ba11bb5c51 100644 --- a/packages/source/CHANGELOG.md +++ b/packages/source/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7-source + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) **Note:** Version bump only for package @antv/l7-source diff --git a/packages/source/package.json b/packages/source/package.json index 04ef2afa91..149cb66a36 100644 --- a/packages/source/package.json +++ b/packages/source/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-source", - "version": "2.1.7", + "version": "2.1.8", "description": "", "main": "lib/index.js", "module": "es/index.js", @@ -25,8 +25,8 @@ "license": "ISC", "dependencies": { "@antv/async-hook": "^2.1.0", - "@antv/l7-core": "^2.1.7", - "@antv/l7-utils": "^2.1.7", + "@antv/l7-core": "^2.1.8", + "@antv/l7-utils": "^2.1.8", "@babel/runtime": "^7.7.7", "@mapbox/geojson-rewind": "^0.4.0", "@turf/helpers": "^6.1.4", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index cc6b17d6a5..b4ebc38efe 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/antvis/L7/compare/v2.1.7...v2.1.8) (2020-03-26) + +**Note:** Version bump only for package @antv/l7-utils + + + + + ## [2.1.7](https://github.com/antvis/L7/compare/v2.1.6...v2.1.7) (2020-03-26) diff --git a/packages/utils/package.json b/packages/utils/package.json index 5c074cc797..c29b1afec3 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@antv/l7-utils", - "version": "2.1.7", + "version": "2.1.8", "description": "", "main": "lib/index.js", "module": "es/index.js",