From 664dc127525000332f7601146077ba450997a9e3 Mon Sep 17 00:00:00 2001 From: Christopher Crouzet Date: Fri, 14 Jun 2024 10:23:58 +1200 Subject: [PATCH] Bump to v1.2.1 --- CHANGELOG.md | 5 +++++ VERSION.md | 2 +- exts/omni.warp.core/config/extension.toml | 2 +- exts/omni.warp.core/docs/CHANGELOG.md | 6 ++++++ exts/omni.warp/config/extension.toml | 4 ++-- exts/omni.warp/docs/CHANGELOG.md | 6 ++++++ warp/config.py | 2 +- 7 files changed, 22 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2ed221ad..3e4a71a05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,12 @@ ## [Upcoming Release] - 2024-??-?? - Improve memory usage and performance for rigid body contact handling when `self.rigid_mesh_contact_max` is zero (default behavior) + +## [1.2.1] - 2024-06-14 + - Fix generic function caching +- Fix Warp not being initialized when constructing arrays with `wp.array()` +- Fix `wp.is_mempool_access_supported()` not resolving the provided device arguments to `wp.context.Device` ## [1.2.0] - 2024-06-06 diff --git a/VERSION.md b/VERSION.md index 26aaba0e8..6085e9465 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1 +1 @@ -1.2.0 +1.2.1 diff --git a/exts/omni.warp.core/config/extension.toml b/exts/omni.warp.core/config/extension.toml index aea6e87c7..88d01709f 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.0" +version = "1.2.1" 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 932eff29c..a5fea46d0 100644 --- a/exts/omni.warp.core/docs/CHANGELOG.md +++ b/exts/omni.warp.core/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## [1.2.1] - 2024-06-14 + +- Fix generic function caching +- Fix Warp not being initialized when constructing arrays with `wp.array()` +- Fix `wp.is_mempool_access_supported()` not resolving the provided device arguments to `wp.context.Device` + ## [1.2.0] - 2024-06-06 - Add a not-a-number floating-point constant that can be used as `wp.NAN` or `wp.nan`. diff --git a/exts/omni.warp/config/extension.toml b/exts/omni.warp/config/extension.toml index 64ae459f4..ac1995608 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.0" +version = "1.2.1" 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.0", exact = true} +"omni.warp.core" = {version = "1.2.1", 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 932eff29c..a5fea46d0 100644 --- a/exts/omni.warp/docs/CHANGELOG.md +++ b/exts/omni.warp/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## [1.2.1] - 2024-06-14 + +- Fix generic function caching +- Fix Warp not being initialized when constructing arrays with `wp.array()` +- Fix `wp.is_mempool_access_supported()` not resolving the provided device arguments to `wp.context.Device` + ## [1.2.0] - 2024-06-06 - Add a not-a-number floating-point constant that can be used as `wp.NAN` or `wp.nan`. diff --git a/warp/config.py b/warp/config.py index 1b3b6cd54..f72caef93 100644 --- a/warp/config.py +++ b/warp/config.py @@ -7,7 +7,7 @@ from typing import Optional -version: str = "1.2.0" +version: str = "1.2.1" 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