Skip to content

Commit 397e852

Browse files
authored
bump version to 0.0.8 (#52)
1 parent a92fe13 commit 397e852

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
## RTXpy Changelog
22
------------------
33

4+
### Version 0.0.8 - 21 February 2026
5+
- Replace build_wheels with release workflow using PYPI_TOKEN (#50)
6+
- Fix Windows: skip GLFW X11 platform hint on native Windows
7+
- Fix Windows crash: use OSError instead of termios.error in except clause
8+
- Fix Windows conda build: allow PyPI access for pyoptix-contrib install
9+
410
### Version 0.0.3 - 11 November 2021
511
- Changes for building on conda-forge, part 2
612

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "rtxpy" %}
2-
{% set version = "0.0.7" %}
2+
{% set version = "0.0.8" %}
33

44
package:
55
name: {{ name|lower }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "rtxpy"
7-
version = "0.0.7"
7+
version = "0.0.8"
88
description = "Ray tracing using CUDA accessible from Python"
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
requires-python = ">=3.10"

rtxpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from .analysis import viewshed, hillshade, render, flyover, view
2525
from .engine import explore
2626

27-
__version__ = "0.0.7"
27+
__version__ = "0.0.8"
2828

2929
# Optional convenience — network helpers with lazy dependency checks
3030
try:

0 commit comments

Comments
 (0)