Skip to content

Commit 5346922

Browse files
committed
Docs touch-ups and prepare release candidate
1 parent 2332f60 commit 5346922

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ API changes, new options, new ShadingSystem features (for renderer writers):
152152
* Older versions of RendererServices texture functions, the old ones
153153
with no errormessage parameter, which were documented as deprecated
154154
since 1.8, are now marked OSL_DEPRECATED. #832 (1.10.0)
155+
* OSLCompiler API:
156+
* Improved error reporting when compiling from memory buffer. The
157+
`OSLCompiler::compile_buffer()` method now takes an optional filename
158+
parameter that will make error messages attribute the right "file"
159+
(e.g., `Error: foo.osl:5...` rather than `<buffer>:5...`). #937 (1.10.2)
155160
* Miscellaneous:
156161
* liboslnoise: Properly hide/export symbols. #849 (1.10.0/1.9.7)
157162
* The behavior of the "searchpath:shader" attribute, used for finding

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ project (OSL
55
LANGUAGES CXX C)
66
set (PROJ_NAME ${PROJECT_NAME}) # short name
77
string (TOLOWER ${PROJ_NAME} PROJ_NAME_LOWER) # short name lower case
8-
set (PROJECT_VERSION_RELEASE_TYPE "beta") # "dev", "betaX", "RCY", ""
8+
set (PROJECT_VERSION_RELEASE_TYPE "RC1") # "dev", "betaX", "RCY", ""
99
set (${PROJECT_NAME}_VERSION_RELEASE_TYPE ${PROJECT_VERSION_RELEASE_TYPE})
10-
set (PROJECT_COPYRIGHTYEARS "2008-2018")
10+
set (PROJECT_COPYRIGHTYEARS "2008-2019")
1111
set (PROJECT_AUTHORS "Sony Pictures Imageworks, et al")
1212
set (PROJECT_URL "")
1313

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009-2017 Sony Pictures Imageworks Inc., et al.
1+
Copyright (c) 2009-2019 Sony Pictures Imageworks Inc., et al.
22
All Rights Reserved.
33

44
Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)