Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.24.0 release #740

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- {
name: "Ubuntu - GCC",
artifact: "linux-gcc.tar.xz",
os: ubuntu-latest,
os: ubuntu-24.04,
cc: "gcc-13",
cxx: "g++-13",
build-type: "Release",
Expand All @@ -45,7 +45,7 @@ jobs:
- {
name: "AlmaLinux 8 - GCC",
artifact: "linux-gcc.tar.xz",
os: ubuntu-latest,
os: ubuntu-24.04,
cc: "gcc-13",
cxx: "g++-13",
build-type: "Release",
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
run: |
sudo apt update
sudo apt install -y doxygen clang-tidy-15 gcovr
sudo pip3 install conan==1.63.0 black==23.1.0 flake8==7.1.1 --break-system-packages --ignore-installed
sudo pip3 install conan==1.63.0 black==23.1.0 flake8==7.1.1 --ignore-installed

# Could not figure out how to add Chocolatey libraries to the PATH automatically with refreshenv, so
# hardcoding their locations instead. Followed these instructions for adding to the PATH on PowerShell:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endif()
# Both CXX and C need to be given otherwise Conan may ignore the CMAKE_C_COMPILER flag
project(
CesiumOmniverse
VERSION 0.23.0
VERSION 0.24.0
DESCRIPTION "Cesium for Omniverse"
LANGUAGES CXX C)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Tokens as CesiumTokens,
)

ION_ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJiNTNkYTkwNC0wNTY2LTQyZmEtYWI0Yi0zYWFiMjRiZTU2ZDUiLCJpZCI6MjU5LCJpYXQiOjE3Mjc3OTEyMTR9.So0Ir4rAmd5TPC5tEeLH1SthFiCkRpEvP_wzGFP2QCQ" # noqa: E501
ION_ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJkZWI3NjA5Yy01Mjc1LTQzMmMtYTg5NS00NDU0NzI1ZWUzYTkiLCJpZCI6MjU5LCJpYXQiOjE3MzA0NjY1NDJ9.LAGLqUcOI1wUKYvpEYfgd0PfAbAB0pN9KsZjiMlyCks" # noqa: E501
GOOGLE_3D_TILES_ION_ID = 2275207

CESIUM_DATA_PRIM_PATH = "/Cesium"
Expand Down
2 changes: 1 addition & 1 deletion exts/cesium.omniverse/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.23.0"
version = "0.24.0"
category = "simulation"
feature = false
app = false
Expand Down
Loading