From e9c512ba5ebeb9eeb1c7824939ae35b20b5c6cd0 Mon Sep 17 00:00:00 2001 From: Brendan Collins Date: Sat, 21 Feb 2026 21:58:05 -0800 Subject: [PATCH] bump version to 0.0.8 --- CHANGELOG.md | 6 ++++++ conda-recipe/meta.yaml | 2 +- pyproject.toml | 2 +- rtxpy/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a008fad..c11a885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ ## RTXpy Changelog ------------------ +### Version 0.0.8 - 21 February 2026 +- Replace build_wheels with release workflow using PYPI_TOKEN (#50) +- Fix Windows: skip GLFW X11 platform hint on native Windows +- Fix Windows crash: use OSError instead of termios.error in except clause +- Fix Windows conda build: allow PyPI access for pyoptix-contrib install + ### Version 0.0.3 - 11 November 2021 - Changes for building on conda-forge, part 2 diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index ad267fa..ce511e9 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "rtxpy" %} -{% set version = "0.0.7" %} +{% set version = "0.0.8" %} package: name: {{ name|lower }} diff --git a/pyproject.toml b/pyproject.toml index 2bb6719..8a2c8cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "rtxpy" -version = "0.0.7" +version = "0.0.8" description = "Ray tracing using CUDA accessible from Python" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.10" diff --git a/rtxpy/__init__.py b/rtxpy/__init__.py index 8e5306b..5dbe188 100644 --- a/rtxpy/__init__.py +++ b/rtxpy/__init__.py @@ -24,7 +24,7 @@ from .analysis import viewshed, hillshade, render, flyover, view from .engine import explore -__version__ = "0.0.7" +__version__ = "0.0.8" # Optional convenience — network helpers with lazy dependency checks try: