Skip to content

Commit 726dc3f

Browse files
committed
Stage for release of v1.13.6.1
Signed-off-by: Larry Gritz <[email protected]>
1 parent a88d708 commit 726dc3f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGES.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
22
<!-- Copyright Contributors to the Open Shading Language Project. -->
33

4-
Release 1.13 -- beta 1: December 20, 2023 (compared to 1.12)
4+
Release 1.13 -- Feb 1, 2024 (compared to 1.12)
55
-------------------------------------------------------------
6+
- beta 1: December 20, 2023
7+
- release v1.13.6.1: Feb 1, 2024
68

79
### New minimum dependencies and compatibility changes:
810

@@ -91,6 +93,7 @@ Release 1.13 -- beta 1: December 20, 2023 (compared to 1.12)
9193
* OptiX PTX pipeline overhaul [#1680](https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/pull/1680) (by Tim Grant) (1.13.5.0)
9294
* Perf: Don't insert redundant run layer calls inside a basic block
9395
[#1665](https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/pull/1665) [#1669](https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/pull/1669) [#1672](https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/pull/1672) (by Chris Hellmuth) (1.13.4.0)
96+
* Fix NVPTX TargetMachine leak, etc. [#1763](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1763) (by Tim Grant)
9497

9598
### 🐛/🔧 Internals: fixes, improvements, and developer concerns
9699

@@ -186,6 +189,7 @@ Release 1.13 -- beta 1: December 20, 2023 (compared to 1.12)
186189
* For clarity, use the term 'runner' instead of 'os' [#1743](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1743)
187190
* Test ABI compliance [#1748](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1748)
188191
* Fix tests passing when test commands fail [#1733](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1733) (by Brecht Van Lommel)
192+
* *ci*: Test against LLVM 17 [#1760](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1760)
189193
* Platform support:
190194
* Include `immintrin.h` only when needed. #1605 (1.13.1.0)
191195
* Changed snprintf formatting to satisfy some compilers.
@@ -211,6 +215,7 @@ Release 1.13 -- beta 1: December 20, 2023 (compared to 1.12)
211215

212216
* Alert slack "release-announcements" channel upon OSL release [#1740](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1740) [#1749](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1749)
213217
* Update pull request template [#1741](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1741)
218+
* Account for duplicate emails in the .mailmap [#1759](https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/1759)
214219

215220

216221
---

CMakeLists.txt

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

55
cmake_minimum_required (VERSION 3.15)
66

7-
set (OSL_VERSION "1.13.6.0")
7+
set (OSL_VERSION "1.13.6.1")
88
set (OSL_VERSION_OVERRIDE "" CACHE STRING
99
"Version override (use with caution)!")
1010
mark_as_advanced (OSL_VERSION_OVERRIDE)
@@ -18,7 +18,7 @@ project (OSL VERSION ${OSL_VERSION}
1818
set (PROJ_NAME ${PROJECT_NAME}) # short name
1919
string (TOLOWER ${PROJ_NAME} PROJ_NAME_LOWER) # short name lower case
2020
string (TOUPPER ${PROJ_NAME} PROJ_NAME_UPPER) # short name upper case
21-
set (PROJECT_VERSION_RELEASE_TYPE "beta1" CACHE STRING
21+
set (PROJECT_VERSION_RELEASE_TYPE "" CACHE STRING
2222
"Build type, for example: dev, beta2, RC1 (empty string for normal release)")
2323
set (${PROJECT_NAME}_VERSION_RELEASE_TYPE ${PROJECT_VERSION_RELEASE_TYPE})
2424
set (PROJECT_AUTHORS "Contributors to the Open Shading Language project")

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ NEW or CHANGED dependencies since the last major release are **bold**.
4848
* [Cuda](https://developer.nvidia.com/cuda-downloads) 9.0 or higher. It is
4949
recommended that you use 11.0 or higher.
5050

51-
* [Boost](https://www.boost.org) 1.55 or newer (tested through boost 1.83)
51+
* [Boost](https://www.boost.org) 1.55 or newer (tested through boost 1.84)
5252
* [Ilmbase or Imath](https://github.com/AcademySoftwareFoundation/Imath) 2.4
5353
or newer (recommended: 3.1 or higher; tested through 3.2)
5454
NOTE: It is likely that 1.13 is the last release that will support

0 commit comments

Comments
 (0)