From 873505e82a851be220b314e8ba80ce58b43e0782 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 30 Jul 2020 23:08:46 +0200 Subject: [PATCH 1/4] Changelog for v6.4.2 --- changelog/v6.4.2.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 changelog/v6.4.2.md diff --git a/changelog/v6.4.2.md b/changelog/v6.4.2.md new file mode 100644 index 0000000000..be9667ccf1 --- /dev/null +++ b/changelog/v6.4.2.md @@ -0,0 +1,14 @@ +# 6.4.1 + +This is a bugfix release which removes a few regressions that were introduced by v6.4.0, and fixes a few issues in examples. + +See the [v6.4.0 release notes](https://github.com/openlayers/openlayers/releases/tag/v6.4.0) for a complete list of changes and upgrade notes when upgrading from v6.3.x. + +## List of all changes + + * [#11364](https://github.com/openlayers/openlayers/pull/11364) - Load pointer events polyfill - before other polyfills ([@ahocevar](https://github.com/ahocevar)) + * [#11365](https://github.com/openlayers/openlayers/pull/11365) - Revert to original method proposed in #11193 ([@mike-000](https://github.com/mike-000)) + * [#11359](https://github.com/openlayers/openlayers/pull/11359) - check projection can wrap before getting width ([@mike-000](https://github.com/mike-000)) + * [#11355](https://github.com/openlayers/openlayers/pull/11355) - Cloak API key with instructions where to get one ([@ahocevar](https://github.com/ahocevar)) + * [#11354](https://github.com/openlayers/openlayers/pull/11354) - Fix line breaks in changelog ([@ahocevar](https://github.com/ahocevar)) + From 7c934393834bb9bf87b9c7ae73698be940eda93a Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 30 Jul 2020 23:09:27 +0200 Subject: [PATCH 2/4] Update package version to 6.4.2 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6d0086df5b..ba01b97fb2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ol", - "version": "6.4.2-dev", + "version": "6.4.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index fa89d4cc50..b5754cd5ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ol", - "version": "6.4.2-dev", + "version": "6.4.2", "description": "OpenLayers mapping library", "keywords": [ "map", From bbad40f08b7c384b9bc1ab36964f531571bba712 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 30 Jul 2020 23:12:45 +0200 Subject: [PATCH 3/4] Develop on 6.4.3-dev --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index ba01b97fb2..37a3aad7eb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ol", - "version": "6.4.2", + "version": "6.4.3-dev", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b5754cd5ed..def4033b46 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ol", - "version": "6.4.2", + "version": "6.4.3-dev", "description": "OpenLayers mapping library", "keywords": [ "map", From bf33d47374d61b6e7faa0b0074514b9db1fad13a Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 30 Jul 2020 23:15:08 +0200 Subject: [PATCH 4/4] Fix typo in changelog --- changelog/v6.4.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/v6.4.2.md b/changelog/v6.4.2.md index be9667ccf1..6d8ed843c4 100644 --- a/changelog/v6.4.2.md +++ b/changelog/v6.4.2.md @@ -1,4 +1,4 @@ -# 6.4.1 +# 6.4.2 This is a bugfix release which removes a few regressions that were introduced by v6.4.0, and fixes a few issues in examples.