From 1bfb95e599064843d3306c13f9ed207ca471fa21 Mon Sep 17 00:00:00 2001 From: Lukasz Wawrzyniak Date: Wed, 19 Jun 2024 15:49:51 -0400 Subject: [PATCH] Bump to v1.2.2 --- VERSION.md | 2 +- exts/omni.warp.core/config/extension.toml | 2 +- exts/omni.warp.core/docs/CHANGELOG.md | 4 ++++ exts/omni.warp/config/extension.toml | 4 ++-- exts/omni.warp/docs/CHANGELOG.md | 4 ++++ warp/config.py | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/VERSION.md b/VERSION.md index 6085e946..23aa8390 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1 +1 @@ -1.2.1 +1.2.2 diff --git a/exts/omni.warp.core/config/extension.toml b/exts/omni.warp.core/config/extension.toml index 88d01709..70f14403 100644 --- a/exts/omni.warp.core/config/extension.toml +++ b/exts/omni.warp.core/config/extension.toml @@ -1,6 +1,6 @@ [package] # Semantic Versioning is used: https://semver.org/ -version = "1.2.1" +version = "1.2.2" authors = ["NVIDIA"] title = "Warp Core" description="The core Warp Python module" diff --git a/exts/omni.warp.core/docs/CHANGELOG.md b/exts/omni.warp.core/docs/CHANGELOG.md index a5fea46d..3284d8d1 100644 --- a/exts/omni.warp.core/docs/CHANGELOG.md +++ b/exts/omni.warp.core/docs/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## [1.2.2] - 2024-06-19 + +- Support for NumPy >= 2.0 + ## [1.2.1] - 2024-06-14 - Fix generic function caching diff --git a/exts/omni.warp/config/extension.toml b/exts/omni.warp/config/extension.toml index ac199560..8026cc08 100644 --- a/exts/omni.warp/config/extension.toml +++ b/exts/omni.warp/config/extension.toml @@ -1,6 +1,6 @@ [package] # Semantic Versioning is used: https://semver.org/ -version = "1.2.1" +version = "1.2.2" authors = ["NVIDIA"] title = "Warp" description="Warp OmniGraph Nodes and Sample Scenes" @@ -35,7 +35,7 @@ exclude = ["Ogn*Database.py", "*/ogn*"] "omni.timeline" = {} "omni.ui" = {optional = true} "omni.usd" = {} -"omni.warp.core" = {version = "1.2.1", exact = true} +"omni.warp.core" = {version = "1.2.2", exact = true} [[python.module]] name = "omni.warp._extension" diff --git a/exts/omni.warp/docs/CHANGELOG.md b/exts/omni.warp/docs/CHANGELOG.md index a5fea46d..3284d8d1 100644 --- a/exts/omni.warp/docs/CHANGELOG.md +++ b/exts/omni.warp/docs/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## [1.2.2] - 2024-06-19 + +- Support for NumPy >= 2.0 + ## [1.2.1] - 2024-06-14 - Fix generic function caching diff --git a/warp/config.py b/warp/config.py index f72caef9..2eb8847f 100644 --- a/warp/config.py +++ b/warp/config.py @@ -7,7 +7,7 @@ from typing import Optional -version: str = "1.2.1" +version: str = "1.2.2" verify_fp: bool = False # verify inputs and outputs are finite after each launch verify_cuda: bool = False # if true will check CUDA errors after each kernel launch / memory operation