Skip to content

Commit

Permalink
Merge pull request #1037 from openlayers/prepare_release
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
gberaudo committed Apr 27, 2023
2 parents b03f4f7 + 1db255f commit 2b353d7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 4 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Changelog

# v 2.14.0 - 2023-04-26

# v 2.13.2 - 2022-11-
* Breaking changes
* Use named exports

* Changes
* port to CesiumJS 1.99 and OL 7.1
* port to CesiumJS 1.104 and OL 7.3

# v 2.13 - 2021-05-20

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ol-cesium",
"version": "2.13.2",
"version": "2.14.0",
"description": "OpenLayers Cesium integration library",
"scripts": {
"build-examples": "cross-env NODE_ENV=production TARGET=examples webpack --progress --bail",
Expand Down
6 changes: 2 additions & 4 deletions src/index.library.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,14 @@ import Manager from './olcs/contrib/Manager.js';

export default OLCesium;

// Using var for phantomJS
// eslint-disable-next-line no-var
var olcs = window['olcs'] = {};
const olcs = window['olcs'] = {};
olcs.OLCesium = OLCesium;

olcs.AbstractSynchronizer = AbstractSynchronizer;
olcs.RasterSynchronizer = RasterSynchronizer;
olcs.VectorSynchronizer = VectorSynchronizer;

olcs.core = core.default;
olcs.core = core;
olcs.core.OLImageryProvider = OLImageryProvider;
olcs.core.VectorLayerCounterpart = VectorLayerCounterpart;

Expand Down

0 comments on commit 2b353d7

Please sign in to comment.