Skip to content

Commit 12892f0

Browse files
committed
Update release version to 1.3.1
1 parent 2183806 commit 12892f0

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ the `pip install` command, e.g.
4545

4646
| Platform | Install Command |
4747
| --------------- | ----------------------------------------------------------------------------------------------------------------------------- |
48-
| Linux aarch64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.3.0/warp_lang-1.3.0+cu11-py3-none-manylinux2014_aarch64.whl` |
49-
| Linux x86-64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.3.0/warp_lang-1.3.0+cu11-py3-none-manylinux2014_x86_64.whl` |
50-
| Windows x86-64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.3.0/warp_lang-1.3.0+cu11-py3-none-win_amd64.whl` |
48+
| Linux aarch64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-manylinux2014_aarch64.whl` |
49+
| Linux x86-64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-manylinux2014_x86_64.whl` |
50+
| Windows x86-64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-win_amd64.whl` |
5151

5252
The `--force-reinstall` option may need to be used to overwrite a previous installation.
5353

VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

docs/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ the ``pip install`` command, e.g.
2525
* - Platform
2626
- Install Command
2727
* - Linux aarch64
28-
- ``pip install https://github.com/NVIDIA/warp/releases/download/v1.3.0/warp_lang-1.3.0+cu11-py3-none-manylinux2014_aarch64.whl``
28+
- ``pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-manylinux2014_aarch64.whl``
2929
* - Linux x86-64
30-
- ``pip install https://github.com/NVIDIA/warp/releases/download/v1.3.0/warp_lang-1.3.0+cu11-py3-none-manylinux2014_x86_64.whl``
30+
- ``pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-manylinux2014_x86_64.whl``
3131
* - Windows x86-64
32-
- ``pip install https://github.com/NVIDIA/warp/releases/download/v1.3.0/warp_lang-1.3.0+cu11-py3-none-win_amd64.whl``
32+
- ``pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-win_amd64.whl``
3333

3434
The ``--force-reinstall`` option may need to be used to overwrite a previous installation.
3535

exts/omni.warp.core/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
# Semantic Versioning is used: https://semver.org/
3-
version = "1.3.0"
3+
version = "1.3.1"
44
authors = ["NVIDIA"]
55
title = "Warp Core"
66
description="The core Warp Python module"

exts/omni.warp/config/extension.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
# Semantic Versioning is used: https://semver.org/
3-
version = "1.3.0"
3+
version = "1.3.1"
44
authors = ["NVIDIA"]
55
title = "Warp"
66
description="Warp OmniGraph Nodes and Sample Scenes"
@@ -35,7 +35,7 @@ exclude = ["Ogn*Database.py", "*/ogn*"]
3535
"omni.timeline" = {}
3636
"omni.ui" = {optional = true}
3737
"omni.usd" = {}
38-
"omni.warp.core" = {version = "1.3.0", exact = true}
38+
"omni.warp.core" = {version = "1.3.1", exact = true}
3939

4040
[[python.module]]
4141
name = "omni.warp._extension"

warp/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from typing import Optional
99

10-
version: str = "1.3.0"
10+
version: str = "1.3.1"
1111
"""Warp version string"""
1212

1313
verify_fp: bool = False

0 commit comments

Comments
 (0)