From 4b022cb70d17367adddfdc6be10e0dd4e615d127 Mon Sep 17 00:00:00 2001 From: Nicolas Roussel Date: Tue, 4 Jun 2024 21:53:41 +0200 Subject: [PATCH] Patch release v0.4.6 --- docs/release_notes.rst | 11 ++++++++++- include/drjit/fwd.h | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 3f7ec50f3..f88e43cae 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -6,13 +6,22 @@ Being an experimental research framework, Dr.Jit does not strictly follow the strive to document breaking API changes in the release notes below. -Dr.Jit 0.4.5 +Dr.Jit 0.4.6 ------------ *June 4, 2024* Most likely the last release which uses `pybind11 `_. +- Set maximum pybind11 version requirement + `[c69f315] `_ + + +Dr.Jit 0.4.5 +------------ + +*June 4, 2024* + - Fix wavefront loops which would occasionally create new kernels `[8f09760] `_ - Fix source of CUDA segfaults diff --git a/include/drjit/fwd.h b/include/drjit/fwd.h index 9799cf069..b5a93c34e 100644 --- a/include/drjit/fwd.h +++ b/include/drjit/fwd.h @@ -67,7 +67,7 @@ #define DRJIT_VERSION_MAJOR 0 #define DRJIT_VERSION_MINOR 4 -#define DRJIT_VERSION_PATCH 5 +#define DRJIT_VERSION_PATCH 6 #define DRJIT_STRINGIFY(x) #x #define DRJIT_TOSTRING(x) DRJIT_STRINGIFY(x)