Skip to content

Commit 2b353d7

Browse files
authored
Merge pull request #1037 from openlayers/prepare_release
Bump version
2 parents b03f4f7 + 1db255f commit 2b353d7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Changelog
22

3+
# v 2.14.0 - 2023-04-26
34

4-
# v 2.13.2 - 2022-11-
5+
* Breaking changes
6+
* Use named exports
57

68
* Changes
7-
* port to CesiumJS 1.99 and OL 7.1
9+
* port to CesiumJS 1.104 and OL 7.3
810

911
# v 2.13 - 2021-05-20
1012

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ol-cesium",
3-
"version": "2.13.2",
3+
"version": "2.14.0",
44
"description": "OpenLayers Cesium integration library",
55
"scripts": {
66
"build-examples": "cross-env NODE_ENV=production TARGET=examples webpack --progress --bail",

src/index.library.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,14 @@ import Manager from './olcs/contrib/Manager.js';
1414

1515
export default OLCesium;
1616

17-
// Using var for phantomJS
18-
// eslint-disable-next-line no-var
19-
var olcs = window['olcs'] = {};
17+
const olcs = window['olcs'] = {};
2018
olcs.OLCesium = OLCesium;
2119

2220
olcs.AbstractSynchronizer = AbstractSynchronizer;
2321
olcs.RasterSynchronizer = RasterSynchronizer;
2422
olcs.VectorSynchronizer = VectorSynchronizer;
2523

26-
olcs.core = core.default;
24+
olcs.core = core;
2725
olcs.core.OLImageryProvider = OLImageryProvider;
2826
olcs.core.VectorLayerCounterpart = VectorLayerCounterpart;
2927

0 commit comments

Comments
 (0)