Skip to content

Commit

Permalink
Bump version to 1.4.2-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shi-eric committed Oct 28, 2024
1 parent 2746c8a commit d35e8c5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion exts/omni.warp.core/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
# Semantic Versioning is used: https://semver.org/
version = "1.4.2-rc.1"
version = "1.4.2-rc.2"
authors = ["NVIDIA"]
title = "Warp Core"
description="The core Warp Python module"
Expand Down
3 changes: 2 additions & 1 deletion exts/omni.warp.core/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## [1.4.2-rc.1] - 2024-11-01
## [1.4.2-rc.2] - 2024-11-01

### Changed

Expand All @@ -12,6 +12,7 @@
- Fix printing vector and matrix adjoints in backward kernels.
- Fix kernel compile error when printing structs.
- Fix an incorrect user function being sometimes resolved when multiple overloads are available with array parameters with different `dtype` values.
- Fix error being raised when static and dynamic for-loops are written in sequence with the same iteration variable names ([GH-331](https://github.com/NVIDIA/warp/issues/331)).

## [1.4.1] - 2024-10-15

Expand Down
3 changes: 2 additions & 1 deletion exts/omni.warp/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## [1.4.2-rc.1] - 2024-11-01
## [1.4.2-rc.2] - 2024-11-01

### Changed

Expand All @@ -12,6 +12,7 @@
- Fix printing vector and matrix adjoints in backward kernels.
- Fix kernel compile error when printing structs.
- Fix an incorrect user function being sometimes resolved when multiple overloads are available with array parameters with different `dtype` values.
- Fix error being raised when static and dynamic for-loops are written in sequence with the same iteration variable names ([GH-331](https://github.com/NVIDIA/warp/issues/331)).

## [1.4.1] - 2024-10-15

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 @@

from typing import Optional

version: str = "1.4.2-rc.1"
version: str = "1.4.2-rc.2"
"""Warp version string"""

verify_fp: bool = False
Expand Down

0 comments on commit d35e8c5

Please sign in to comment.