Skip to content

Commit f573f11

Browse files
committedMay 15, 2023
Update widgets version
1 parent d35385f commit f573f11

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed
 

‎CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
### 1.105.2 - 2023-05-15
4+
5+
- This is an npm-only release to fix a dependency issue published in 1.105.1.
6+
37
### 1.105.1 - 2023-05-10
48

59
#### @cesium/engine

‎Documentation/Contributors/ReleaseGuide/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ There is no release manager; instead, our community shares the responsibility. A
2626
8. Proofread [`CHANGES.md`](../../../CHANGES.md) with the date of the release. Adjust the order of changes so that prominent/popular changes come first. Ensure each change is in the section for the relevant workspace.
2727
9. Based on `CHANGES.md`, update each workspace version following the rules of [semantic versioning](https://semver.org/), e.g.,
2828
- `npm version minor -w @cesium/engine --no-git-tag-version`
29-
- If there are no changes, skip updating the workspace version.
3029
10. Update the version in `package.json` to match, e.g. `1.14.0` -> `1.15.0`.
3130
11. Commit these changes.
3231
12. Make sure the repository is clean `git clean -d -x -f`. **This will delete all files not already in the repository.**

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cesium",
3-
"version": "1.105.1",
3+
"version": "1.105.2",
44
"description": "CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
55
"homepage": "http://cesium.com/cesiumjs/",
66
"license": "Apache-2.0",
@@ -52,7 +52,7 @@
5252
],
5353
"dependencies": {
5454
"@cesium/engine": "2.4.0",
55-
"@cesium/widgets": "2.2.0"
55+
"@cesium/widgets": "2.3.0"
5656
},
5757
"devDependencies": {
5858
"@aws-sdk/client-s3": "^3.276.0",

‎packages/widgets/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cesium/widgets",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "A widgets library for use with CesiumJS. CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
55
"keywords": [
66
"3D",
@@ -52,4 +52,4 @@
5252
"bugs": {
5353
"url": "https://github.com/CesiumGS/cesium/issues"
5454
}
55-
}
55+
}

0 commit comments

Comments
 (0)
Please sign in to comment.