Skip to content

Commit d08f476

Browse files
committed
OSL v1.12.6.1-RC1 release candidate for 1.12
Signed-off-by: Larry Gritz <[email protected]>
1 parent 7e9ddad commit d08f476

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

CHANGES.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ SIMD batched shading mode:
9797
* Batched isnan, isinf, isfinite. #1456 (1.12.4.2)
9898
* Batched userdata and output placement. #1455 (1.12.4.2)
9999
* Batched pointcloud functions. #1464 (1.12.4.4)
100-
* Batched closures (#1500)
100+
* Batched closures #1500
101+
* Fix overrunning allocation region in debug common_ancestor_between. #1577
102+
(1.12.6.1)
101103

102104
OptiX rendering:
103105
* Explicitly set the OptiX pipeline stack size. #1254 (1.12.0.0)
@@ -167,6 +169,8 @@ Bug fixes and other improvements (internals):
167169
* Switch to cone tracing for derivatives. #1543 (1.12.6.0)
168170
* Fix error that prevented correct typecheck of ternary operator. #1552
169171
(1.12.6.0)
172+
* Fix bug where assigning an init-op param its default value as an instance
173+
value would get lost. #1578 (1.12.6.1)
170174

171175
Internals/developer concerns:
172176
* Use the `final` keyword in certain internal classes where applicable.
@@ -235,6 +239,7 @@ Build & test system improvements:
235239
(1.12.4.1)
236240
- Make exported cmake configs relocatable by using relative paths. #1466
237241
(1.12.4.4)
242+
- Make the version number be a cmake cache variable. #1579 (1.12.6.1)
238243
* Dependency version support:
239244
- Build properly against Cuda 11 and OptiX 7.1. #1232 (1.12.0.1)
240245
and up to OptiX 7.4 #1559 (1.12.6.0)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project (OSL VERSION ${OSL_VERSION}
1111
set (PROJ_NAME ${PROJECT_NAME}) # short name
1212
string (TOLOWER ${PROJ_NAME} PROJ_NAME_LOWER) # short name lower case
1313
string (TOUPPER ${PROJ_NAME} PROJ_NAME_UPPER) # short name upper case
14-
set (PROJECT_VERSION_RELEASE_TYPE "beta" CACHE STRING
14+
set (PROJECT_VERSION_RELEASE_TYPE "RC1" CACHE STRING
1515
"Build type, for example: dev, beta2, RC1 (empty string for normal release)")
1616
set (${PROJECT_NAME}_VERSION_RELEASE_TYPE ${PROJECT_VERSION_RELEASE_TYPE})
1717
set (PROJECT_AUTHORS "Contributors to the Open Shading Language project")

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -485,14 +485,15 @@ Matthaus G. Chajdas, Clark Chen, Alejandro Conty, Dieter De Baets, Thomas
485485
Dinges, Mads Drøschler, Luke Emrose, Louis Feng, Mark Final, Henri Fousse,
486486
Stephen Friedman, Syoyo Fujita, Tim Grant, Larry Gritz, Nicolas Guiard, Euan
487487
Haahr, Derek Haase, Sven-Hendrik Haase, John Haddon, Niklas Harrysson, Daniel
488-
Heckenberg, Adrien Herubel, Thiago Ize, Matt Johnson, Ronan Keryell, Chris
489-
Kulla, Elvic Liang, Max Liani, Adam Martinez, John Mertic, Bastien Montagne,
490-
Steena Monteiro, Alexis Oblet, Erich Ocean, Mikko Ohtamaa, Jino Park, Alexei
491-
Pawlow, Jay Reynolds, Declan Russell, Benoit Ruiz, Patrick Scheibe, Alex
492-
Schworer, Jonathan Scruggs, Sergey Sharybin, Sandip Shukla, Cliff Stein,
493-
Stephan Steinbach, Luya Tshimbalanga, Esteban Tovagliari, Brecht Van Lommel,
494-
Alexander von Knorring, Alex Wells, Roman Zulak. (Listed alphabetically; if
495-
we've left anybody out, it is inadvertent, please let us know.)
488+
Heckenberg, Chris Hellmuth, Adrien Herubel, Thiago Ize, Matt Johnson, Ronan
489+
Keryell, Chris Kulla, Elvic Liang, Max Liani, Adam Martinez, John Mertic,
490+
Bastien Montagne, Steena Monteiro, Alexis Oblet, Erich Ocean, Mikko Ohtamaa,
491+
Jino Park, Alexei Pawlow, Jay Reynolds, Declan Russell, Benoit Ruiz, Patrick
492+
Scheibe, Alex Schworer, Jonathan Scruggs, Sergey Sharybin, Sandip Shukla, Mark
493+
Sisson, Cliff Stein, Stephan Steinbach, Luya Tshimbalanga, Esteban Tovagliari,
494+
Brecht Van Lommel, Alexander von Knorring, Alex Wells, Roman Zulak. (Listed
495+
alphabetically; if we've left anybody out, it is inadvertent, please let us
496+
know.)
496497

497498
We cannot possibly express sufficient gratitude to the managers at Sony
498499
Pictures Imageworks who allowed this project to proceed, supported it

doc/RELEASING.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ branch, and henceforth, any big or compatibility-breaking changes will only be
144144
committed to main and not backported to the release branch. (Though we are
145145
loose about this rule during the alpha period and allow continued breaking
146146
changes in the alpha, but by the time we call it beta, we allow no more
147-
breaking changes.)
147+
breaking changes.) Also at this stage, the main branch's CHANGES.md should
148+
have a heading added at the top for the *next* version.
148149

149150

150151
### Prior to a release
@@ -338,4 +339,8 @@ Odds and ends to do after the tag is pushed and the announcements are sent:
338339
Language" channel of the ASWF slack. It can be a one-line announcement and
339340
then just a link to the GitHub release page for this version.
340341

341-
342+
- Edit the top-level CMakeList.txt to update the version to the *next*
343+
anticipated release on the branch, in order to ensure that anybody building
344+
from subsequent patches won't get a release number that advertises itself
345+
incorrectly as a prior tagged release. Also edit CHANGES.md to add a new
346+
(blank) heading for the next patch or release.

0 commit comments

Comments
 (0)