Skip to content

Commit

Permalink
Bump version to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mmacklin committed Apr 13, 2023
1 parent 1a7980a commit 4444d51
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
0.8.0
0.8.1

2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
copyright = '2022, NVIDIA'
author = 'NVIDIA'

version = '0.8.0'
version = '0.8.1'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion exts/omni.warp/config/extension.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
5 changes: 5 additions & 0 deletions exts/omni.warp/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setuptools.setup(
name="warp-lang",
version="0.8.0",
version="0.8.1",
author="NVIDIA",
author_email="[email protected]",
description="A Python framework for high-performance simulation and graphics programming",
Expand Down
2 changes: 1 addition & 1 deletion warp/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4444d51

Please sign in to comment.