Skip to content

Commit

Permalink
Release 2.3.7.2 -- the first supported 2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lgritz committed Sep 1, 2021
1 parent 3607ee3 commit 9f74cf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
Release 2.3 (1 Sept 2021) -- compared to 2.2
----------------------------------------------

Updates for RC1:
* Build: Better finding of OpenCV on Windows. #3062
* Build: Support for build dir in odd places. #3065 #3067
* Build scripts: Renamed OIIO_DEP_DOWNLOAD_ONLY env variable used by
some dependency build scripts to more generic DEP_DOWNLOAD_ONLY. #3072
* Build: To prevent accidental overwrite of sensitive areas (such as
/usr/local), you now need to explicitly set CMAKE_INSTALL_PREFIX if you
want the "install" to not be local to the build area. #3069

New minimum dependencies and compatibility changes:
* C++ standard: **C++14 is now the minimum (gcc 6.1 - 11.2, clang 3.4 - 12,
MSVS 2017 - 2019, icc 17+).** The default C++ standard mode, if none is
Expand Down Expand Up @@ -495,7 +486,6 @@ Build/test system improvements and platform ports:
variable called `DEP_DOWNLOAD_ONLY`, which if set will only do the
downloads but not the builds. #3058 #3072 (2.3.7)
- Better finding of OpenCV on Windows. #3062 (2.3.7.1)

* Testing and Continuous integration (CI) systems:
- Completely get rid of the old appveyor CI. #2782 (2.3.2.0)
- Test against libtiff 4.2 in the "latest releases" test. #2792 (2.3.2.0)
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# https://github.com/OpenImageIO/oiio/blob/master/LICENSE.md

cmake_minimum_required (VERSION 3.12)
project (OpenImageIO VERSION 2.3.7.1
project (OpenImageIO VERSION 2.3.7.2
HOMEPAGE_URL "https://openimageio.org"
LANGUAGES CXX C)
set (PROJ_NAME OIIO) # short name, caps
string (TOLOWER ${PROJ_NAME} PROJ_NAME_LOWER) # short name lower case
string (TOUPPER ${PROJ_NAME} PROJ_NAME_UPPER) # short name upper case
set (PROJECT_VERSION_RELEASE_TYPE "RC1") # "dev", "betaX", "RCY", ""
set (PROJECT_VERSION_RELEASE_TYPE "") # "dev", "betaX", "RCY", ""
set (${PROJECT_NAME}_VERSION_RELEASE_TYPE ${PROJECT_VERSION_RELEASE_TYPE})
set (PROJECT_AUTHORS "Contributors to the OpenImageIO project")
set (${PROJECT_NAME}_SUPPORTED_RELEASE 1) # Change to 1 for release branch
Expand Down

0 comments on commit 9f74cf4

Please sign in to comment.