Skip to content

Commit b11ad77

Browse files
committed
0.5.0 release
1 parent 4843814 commit b11ad77

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
### v0.5.0 - 2023-05-01
4+
5+
- Added material pool for better performance and to reduce texture/material loading artifacts.
6+
- Added support for multiple viewports.
7+
- Fixed red flashes when materials are loading.
8+
- Fixed cyan flashes when textures are loading.
9+
- Fixed adding imagery as base layer for existing tileset.
10+
- Fixed Fabric types for `tilesetId` and `tileId`.
11+
- Upgraded to cesium-native v0.23.0.
12+
313
### v0.4.0 - 2023-04-03
414

515
- Fixed a crash when removing the last available access token for a tileset.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ endif()
99
# Both CXX and C need to be given otherwise Conan may ignore the CMAKE_C_COMPILER flag
1010
project(
1111
CesiumOmniverse
12-
VERSION 0.4.0
12+
VERSION 0.5.0
1313
DESCRIPTION "Cesium for Omniverse"
1414
LANGUAGES CXX C)
1515

docs/release-guide/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ This is the process we follow when releasing a new version of Cesium for Omniver
1010
6. Update the extension `version` in [extension.toml](../../exts/cesium.omniverse/config/extension.toml). This should be the same version as above.
1111
7. Update [`CHANGES.md`](CHANGES.md).
1212
8. Commit the changes, e.g. `git commit -am "0.0.0 release"`.
13-
9. Tag the release, e.g. `git tag -a v0.0.0 -m "0.0.0 release"`.
14-
10. Push to main, e.g. `git push --atomic origin main v0.0.0`.
15-
11. Wait for CI to pass.
16-
12. Download the release build from S3. In the AWS management console (old AWS account), go to the bucket [`cesium-travis-builds/cesium-omniverse/main`](https://s3.console.aws.amazon.com/s3/buckets/cesium-travis-builds?region=us-east-1&prefix=cesium-omniverse/main/&showversions=false), find the appropriate date and commit hash to download the CentOS and Windows builds zip files (e.g. `CesiumForOmniverse-Linux-vX.X.X.zip` and `CesiumForOmniverse-Windows-vX.X.X.zip`). Note that the git tag is appended to end of the file name instead of the git commit hash.
17-
13. Create a new release on GitHub: https://github.com/CesiumGS/cesium-omniverse/releases/new.
13+
9. Push the commit, e.g. `git push origin main`.
14+
10. Tag the release, e.g. `git tag -a v0.0.0 -m "0.0.0 release"`.
15+
11. Push the tag, e.g. `git push origin v0.0.0`.
16+
12. Wait for CI to pass.
17+
13. Download the release build from S3. In the AWS management console (old AWS account), go to the bucket [`cesium-travis-builds/cesium-omniverse/main`](https://s3.console.aws.amazon.com/s3/buckets/cesium-travis-builds?region=us-east-1&prefix=cesium-omniverse/main/&showversions=false), find the appropriate date and commit hash to download the CentOS and Windows builds zip files (e.g. `CesiumForOmniverse-Linux-vX.X.X.zip` and `CesiumForOmniverse-Windows-vX.X.X.zip`). Note that the git tag is appended to end of the file name instead of the git commit hash.
18+
14. Create a new release on GitHub: https://github.com/CesiumGS/cesium-omniverse/releases/new.
1819
* Chose the new tag.
1920
* Copy the changelog into the description. Follow the format used in previous releases.
2021
* Upload the Linux and Windows release zip files.
21-
14. Proceed to [Releasing a new version of Cesium for Omniverse Samples](#releasing-a-new-version-of-cesium-for-omniverse-samples).
22+
15. Proceed to [Releasing a new version of Cesium for Omniverse Samples](#releasing-a-new-version-of-cesium-for-omniverse-samples).
2223

2324
# Releasing a new version of Cesium for Omniverse Samples
2425

exts/cesium.omniverse/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
version = "0.4.0"
2+
version = "0.5.0"
33
category = "simulation"
44
feature = false
55
app = false

0 commit comments

Comments
 (0)