diff --git a/changelog/v5.0.3.md b/changelog/v5.0.3.md new file mode 100644 index 0000000000..8c4cede69b --- /dev/null +++ b/changelog/v5.0.3.md @@ -0,0 +1,9 @@ +# 5.0.3 + +The v5.0.3 fixes a regression in the vector tile renderer and improves the built examples and release package. + +## Fixes + + * [#8364](https://github.com/openlayers/openlayers/pull/8364) - Make examples work in IE11 ([@ahocevar](https://github.com/ahocevar)) + * [#8363](https://github.com/openlayers/openlayers/pull/8363) - Autogenerate src/ol/package.json ([@ahocevar](https://github.com/ahocevar)) + * [#8371](https://github.com/openlayers/openlayers/pull/8371) - Skip rendering when there is no replay group ([@ahocevar](https://github.com/ahocevar)) diff --git a/package.json b/package.json index 2555d19a62..14925e8233 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openlayers", - "version": "5.0.2", + "version": "5.0.3", "description": "OpenLayers mapping library", "keywords": [ "map", diff --git a/src/ol/util.js b/src/ol/util.js index 275da317c6..07395da368 100644 --- a/src/ol/util.js +++ b/src/ol/util.js @@ -52,4 +52,4 @@ export function getUid(obj) { * OpenLayers version. * @type {string} */ -export const VERSION = '5.0.2'; +export const VERSION = '5.0.3';