Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Maintainer (after 1.5.2 release)

Michael D. Smith


Cmake build system

Kimball Thurston
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Version 1.5.4:
* add CI for various platforms
* add support for FreeBSD
* fix strict aliasing violations
* fix compile warning and deprecations on MacOS
* fix build using openexr2 static
* fix build using openexr2 shared (iex_debug trap issue)
* Disambiguate clamp() calls
* change SOVERSION to use MAJOR.MINOR format instead of MAJOR.MINOR.PATCH

Version 1.5.3:
* Fix compile bug preventing compilation on Ubuntu Focal and later
* Fix valgrind and address santizer errors that caused runtime crashes and CI failures
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.12)
project(CTL VERSION 1.5.3)
project(CTL VERSION 1.5.4)
include(GNUInstallDirs)

set(CMAKE_CXX_STANDARD 11)
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ctl",
"version": "1.5.3",
"version": "1.5.4",
"dependencies": [
"imath",
"openexr",
Expand Down
Loading