Skip to content

Commit 2ba3614

Browse files
committed
v3.8.0 release
1 parent c3d367c commit 2ba3614

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ When using Mitsuba 3 in academic projects, please cite:
146146
title = {Mitsuba 3 renderer},
147147
author = {Wenzel Jakob and Sébastien Speierer and Nicolas Roussel and Merlin Nimier-David and Delio Vicini and Tizian Zeltner and Baptiste Nicolet and Miguel Crespo and Vincent Leroy and Ziyi Zhang},
148148
note = {https://mitsuba-renderer.org},
149-
version = {3.7.1},
149+
version = {3.8.0},
150150
year = 2022
151151
}
152152
```

docs/generated/extracted_rst_api.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3831,7 +3831,7 @@
38313831

38323832
.. py:data:: mitsuba.DEBUG
38333833
:type: bool
3834-
:value: True
3834+
:value: False
38353835

38363836
.. py:class:: mitsuba.DefaultFormatter
38373837

@@ -6880,19 +6880,19 @@
68806880

68816881
.. py:data:: mitsuba.MI_VERSION
68826882
:type: str
6883-
:value: 3.7.1
6883+
:value: 3.8.0
68846884

68856885
.. py:data:: mitsuba.MI_VERSION_MAJOR
68866886
:type: int
68876887
:value: 3
68886888

68896889
.. py:data:: mitsuba.MI_VERSION_MINOR
68906890
:type: int
6891-
:value: 7
6891+
:value: 8
68926892

68936893
.. py:data:: mitsuba.MI_VERSION_PATCH
68946894
:type: int
6895-
:value: 1
6895+
:value: 0
68966896

68976897
.. py:data:: mitsuba.MI_YEAR
68986898
:type: str

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ When using Mitsuba 3 in academic projects, please cite:
111111
title = {Mitsuba 3 renderer},
112112
author = {Wenzel Jakob and Sébastien Speierer and Nicolas Roussel and Merlin Nimier-David and Delio Vicini and Tizian Zeltner and Baptiste Nicolet and Miguel Crespo and Vincent Leroy and Ziyi Zhang},
113113
note = {https://mitsuba-renderer.org},
114-
version = {3.0.1},
114+
version = {3.8.0},
115115
year = 2022,
116116
}
117117

docs/release_notes.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ Being an experimental research framework, Mitsuba 3 does not strictly follow the
55
`Semantic Versioning <https://semver.org/>`__ convention. That said, we will
66
strive to document breaking API changes in the release notes below.
77

8-
Upcoming changes
9-
----------------
8+
Mitsuba 3.8.0
9+
-------------
10+
*February 23, 2026*
1011

1112
- Upgrade Dr.Jit to version `1.3.1
1213
<https://github.com/mitsuba-renderer/drjit/releases/tag/v1.3.1>`__. This

include/mitsuba/mitsuba.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#pragma once
1010

1111
#define MI_VERSION_MAJOR 3
12-
#define MI_VERSION_MINOR 7
13-
#define MI_VERSION_PATCH 1
12+
#define MI_VERSION_MINOR 8
13+
#define MI_VERSION_PATCH 0
1414

1515
#define MI_STRINGIFY(x) #x
1616
#define MI_TOSTRING(x) MI_STRINGIFY(x)

0 commit comments

Comments
 (0)