From 4444d51d3f902d9418f832a3588da5b9ced951a9 Mon Sep 17 00:00:00 2001 From: Miles Macklin Date: Thu, 13 Apr 2023 12:03:43 +1200 Subject: [PATCH] Bump version to 0.8.1 --- CHANGELOG.md | 5 +++++ VERSION.md | 2 +- docs/conf.py | 2 +- exts/omni.warp/config/extension.toml | 2 +- exts/omni.warp/docs/CHANGELOG.md | 5 +++++ setup.py | 2 +- warp/config.py | 2 +- 7 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 109b1cd5e..66b870c72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## [0.8.1] - 2023-04-13 + +- Fix for regression when passing flattened numeric lists as matrix arguments to kernels +- Fix for regressions when passing wp.struct types with uninitialized (None) member attributes + ## [0.8.0] - 2023-04-05 - Add `Texture Write` node for updating dynamic RTX textures from Warp kernels / nodes diff --git a/VERSION.md b/VERSION.md index 7eabd6700..829d95cb8 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1,2 +1,2 @@ -0.8.0 +0.8.1 diff --git a/docs/conf.py b/docs/conf.py index 76e530d6f..dbb432f16 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ copyright = '2022, NVIDIA' author = 'NVIDIA' -version = '0.8.0' +version = '0.8.1' # -- General configuration --------------------------------------------------- diff --git a/exts/omni.warp/config/extension.toml b/exts/omni.warp/config/extension.toml index 647d2ae4c..be03c6694 100644 --- a/exts/omni.warp/config/extension.toml +++ b/exts/omni.warp/config/extension.toml @@ -1,7 +1,7 @@ [package] # Semantic Versioning is used: https://semver.org/ -version = "0.8.0" +version = "0.8.1" authors = ["NVIDIA"] title = "Warp" description="A Python framework for high-performance simulation and graphics programming" diff --git a/exts/omni.warp/docs/CHANGELOG.md b/exts/omni.warp/docs/CHANGELOG.md index 46493cf5e..7236069ab 100644 --- a/exts/omni.warp/docs/CHANGELOG.md +++ b/exts/omni.warp/docs/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## [0.8.1] - 2023-04-13 + +- Fix for regression when passing flattened numeric lists as matrix arguments to kernels +- Fix for regressions when passing wp.struct types with uninitialized (None) member attributes + ## [0.8.0] - 2023-04-05 - Add `Texture Write` node for updating dynamic RTX textures from Warp kernels / nodes diff --git a/setup.py b/setup.py index 330cfb0bd..085906167 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setuptools.setup( name="warp-lang", - version="0.8.0", + version="0.8.1", author="NVIDIA", author_email="mmacklin@nvidia.com", description="A Python framework for high-performance simulation and graphics programming", diff --git a/warp/config.py b/warp/config.py index 00c1ac949..93d698844 100644 --- a/warp/config.py +++ b/warp/config.py @@ -7,7 +7,7 @@ import os -version = "0.8.0" +version = "0.8.1" cuda_path = None # path to local CUDA toolchain, if None at init time warp will attempt to find the SDK using CUDA_PATH env var