Skip to content

Commit 0840f1d

Browse files
committed
0.27.0 release
1 parent 3a6cf9b commit 0840f1d

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

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.26.0
12+
VERSION 0.27.0
1313
DESCRIPTION "Cesium for Omniverse"
1414
LANGUAGES CXX C)
1515

apps/exts/cesium.performance.app/cesium/performance/app/extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
Tokens as CesiumTokens,
2424
)
2525

26-
ION_ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIyYjg2NWRjMS1iM2EzLTQ0NmQtYTJlMi05MjEyMTcxYWI1YWMiLCJpZCI6MjU5LCJpYXQiOjE3Njc2Mjc1NTN9.bXYbdecWJWzddE_ZuYjIDtWS67bypgZUuXyDgEsukuo" # noqa: E501
26+
ION_ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI5Y2VhYjk5MC01MTc5LTRiZTktODRhNy00MTYxNzEwYjEzZjUiLCJpZCI6MjU5LCJpYXQiOjE3NzAzMDg3MDV9.19_jZCWiaYOYaBLcimv1a6-k08pmVoN-07TKKX8740s" # noqa: E501
2727
GOOGLE_3D_TILES_ION_ID = 2275207
2828

2929
CESIUM_DATA_PRIM_PATH = "/Cesium"

docs/developer-setup/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ See [Linux](#linux) or [Windows](#windows) for step-by-step installation instruc
5252
```
5353
- Install dependencies (for Ubuntu 22.04 - other Linux distributions should be similar)
5454
```sh
55-
sudo apt install -y gcc-9 g++-9 clang-15 python3 python3-pip cmake make git doxygen clang-format-15 clang-tidy-15 clangd-15 gcovr
55+
sudo apt install -y gcc-9 g++-9 clang-15 python3 python3-pip cmake make git git-lfs doxygen clang-format-15 clang-tidy-15 clangd-15 gcovr
5656
```
5757
- Install Conan with pip because Conan is not in Ubuntu's package manager
5858
```sh

docs/release-guide/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ This is the process we follow when releasing a new version of Cesium for Omniver
5454
After the package is built, verify that the extension loads in USD Composer:
5555

5656
* Open USD Composer
57-
* Open the extensions window and remove Cesium for Omniverse from the list of search paths (if it exists)
57+
* Follow the instructions in https://github.com/NVIDIA-Omniverse/kit-app-template to create a new application from the USD Composer template.
58+
* Open the extensions window (Developer -> Extensions) and remove Cesium for Omniverse from the list of search paths (if it exists)
5859
* Close USD Composer
5960
* Unzip the package to `$USERHOME$/Documents/Kit/Shared/exts`
6061
* Open USD Composer

exts/cesium.omniverse/config/extension.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
version = "0.26.0"
2+
version = "0.27.0"
33
category = "simulation"
44
feature = false
55
app = false
@@ -33,7 +33,7 @@ python = false
3333

3434
# Which extensions this extension depends on
3535
[dependencies]
36-
"cesium.usd.plugins" = { version = "0.7.0" }
36+
"cesium.usd.plugins" = { version = "0.8.0" }
3737
"usdrt.scenegraph" = {}
3838
"omni.ui" = {}
3939
"omni.usd" = {}

exts/cesium.usd.plugins/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
order = -100
55

66
[package]
7-
version = "0.7.0"
7+
version = "0.8.0"
88
category = "simulation"
99
feature = false
1010
app = false

0 commit comments

Comments
 (0)