diff --git a/CHANGELOG.md b/CHANGELOG.md index 3691d0e4b..8d06fbeb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # CHANGELOG +## [0.13.0] - 2024-02-16 + +- Update the license to *NVIDIA Software License*, allowing commercial use (see `LICENSE.md`) +- Add `CONTRIBUTING.md` guidelines (for NVIDIA employees) +- Hash CUDA `snippet` and `adj_snippet` strings to fix caching +- Fix `build_docs.py` on Windows +- Add missing `.py` extension to `warp/tests/walkthrough_debug` +- Allow `wp.bool` usage in vector and matrix types + +## [0.12.0] - 2024-02-05 + +- Add a warning when the `enable_backward` setting is set to `False` upon calling `wp.Tape.backward()` +- Fix kernels not being recompiled as expected when defined using a closure +- Change the kernel cache appauthor subdirectory to just "NVIDIA" +- Ensure that gradients attached to PyTorch tensors have compatible strides when calling `wp.from_torch()` +- Add a `Noise Deform` node for OmniGraph that deforms points using a perlin/curl noise + ## [0.11.0] - 2024-01-23 - Re-release 1.0.0-beta.7 as a non-pre-release 0.11.0 version so it gets selected by `pip install warp-lang`. diff --git a/VERSION.md b/VERSION.md index d9df1bbc0..54d1a4f2a 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1 +1 @@ -0.11.0 +0.13.0 diff --git a/exts/omni.warp.core/config/extension.toml b/exts/omni.warp.core/config/extension.toml index e013df7cd..ab9c28d3e 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 = "0.11.0" +version = "0.13.0" 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 3691d0e4b..8d06fbeb1 100644 --- a/exts/omni.warp.core/docs/CHANGELOG.md +++ b/exts/omni.warp.core/docs/CHANGELOG.md @@ -1,5 +1,22 @@ # CHANGELOG +## [0.13.0] - 2024-02-16 + +- Update the license to *NVIDIA Software License*, allowing commercial use (see `LICENSE.md`) +- Add `CONTRIBUTING.md` guidelines (for NVIDIA employees) +- Hash CUDA `snippet` and `adj_snippet` strings to fix caching +- Fix `build_docs.py` on Windows +- Add missing `.py` extension to `warp/tests/walkthrough_debug` +- Allow `wp.bool` usage in vector and matrix types + +## [0.12.0] - 2024-02-05 + +- Add a warning when the `enable_backward` setting is set to `False` upon calling `wp.Tape.backward()` +- Fix kernels not being recompiled as expected when defined using a closure +- Change the kernel cache appauthor subdirectory to just "NVIDIA" +- Ensure that gradients attached to PyTorch tensors have compatible strides when calling `wp.from_torch()` +- Add a `Noise Deform` node for OmniGraph that deforms points using a perlin/curl noise + ## [0.11.0] - 2024-01-23 - Re-release 1.0.0-beta.7 as a non-pre-release 0.11.0 version so it gets selected by `pip install warp-lang`. diff --git a/exts/omni.warp/config/extension.toml b/exts/omni.warp/config/extension.toml index 8887552a4..160fd0eab 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.11.0" +version = "0.13.0" 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 = "0.11.0", exact = true} +"omni.warp.core" = {version = "0.13.0", 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 3691d0e4b..8d06fbeb1 100644 --- a/exts/omni.warp/docs/CHANGELOG.md +++ b/exts/omni.warp/docs/CHANGELOG.md @@ -1,5 +1,22 @@ # CHANGELOG +## [0.13.0] - 2024-02-16 + +- Update the license to *NVIDIA Software License*, allowing commercial use (see `LICENSE.md`) +- Add `CONTRIBUTING.md` guidelines (for NVIDIA employees) +- Hash CUDA `snippet` and `adj_snippet` strings to fix caching +- Fix `build_docs.py` on Windows +- Add missing `.py` extension to `warp/tests/walkthrough_debug` +- Allow `wp.bool` usage in vector and matrix types + +## [0.12.0] - 2024-02-05 + +- Add a warning when the `enable_backward` setting is set to `False` upon calling `wp.Tape.backward()` +- Fix kernels not being recompiled as expected when defined using a closure +- Change the kernel cache appauthor subdirectory to just "NVIDIA" +- Ensure that gradients attached to PyTorch tensors have compatible strides when calling `wp.from_torch()` +- Add a `Noise Deform` node for OmniGraph that deforms points using a perlin/curl noise + ## [0.11.0] - 2024-01-23 - Re-release 1.0.0-beta.7 as a non-pre-release 0.11.0 version so it gets selected by `pip install warp-lang`. diff --git a/warp/config.py b/warp/config.py index f6683cf11..d265d9171 100644 --- a/warp/config.py +++ b/warp/config.py @@ -5,7 +5,7 @@ # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. -version = "0.11.0" +version = "0.13.0" 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