Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version/soversion on main branch #1848

Merged
merged 3 commits into from
Sep 30, 2024
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
20 changes: 18 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,26 @@ Minor release two significant changes:
scanline files. The previous API remains in place for now for
backwards compatibility.

See [src/wrappers/python/README.md] for a synopsis.
See [src/wrappers/python/README.md](src/wrappers/python/README.md)
for a synopsis.

### Merged Pull Requests

This release fixes:

* OSS-fuzz [42538530](https://issues.oss-fuzz.com/issues/42538530)
Crash in MemcmpInterceptorCommon
* OSS-fuzz [42538529](https://issues.oss-fuzz.com/issues/42538529)
Null-dereference READ in internal_exr_undo_rle
* OSS-fuzz [42538428](https://issues.oss-fuzz.com/issues/42538428)
Integer-overflow in internal_exr_parse_header
* OSS-fuzz [42538425](https://issues.oss-fuzz.com/issues/42538425)
Crash in internal_exr_validate_shared_attrs
* OSS-fuzz [42538423](https://issues.oss-fuzz.com/issues/42538423)
Null-dereference READ in internal_rle_decompress
* OSS-fuzz [42533565](https://issues.oss-fuzz.com/issues/42533565)
Invalid-enum-value in Imf_3_3::isValidCompression

### Merged Pull Requests

* [1833](https://github.com/AcademySoftwareFoundation/openexr/pull/1833)
Bump github/codeql-action from 3.26.7 to 3.26.8
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ set(OPENEXR_VERSION_API "${OpenEXR_VERSION_MAJOR}_${OpenEXR_VERSION_MINOR}")
# For example, in "libOpenEXR.so.31.3.2.0", "libOpenEXR.so.31" is the SONAME
# and ".3.2.0" identifies the corresponding library release.

set(OPENEXR_LIB_SOVERSION 31)
set(OPENEXR_LIB_SOVERSION 99)
set(OPENEXR_LIB_VERSION "${OPENEXR_LIB_SOVERSION}.${OPENEXR_VERSION}") # e.g. "31.3.2.0"

option(OPENEXR_INSTALL "Install OpenEXR libraries" ON)
Expand Down
4 changes: 2 additions & 2 deletions src/lib/OpenEXRCore/openexr_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#ifndef INCLUDED_OPENEXR_VERSION_H
# define INCLUDED_OPENEXR_VERSION_H

# define OPENEXR_VERSION_MAJOR 3
# define OPENEXR_VERSION_MINOR 3
# define OPENEXR_VERSION_MAJOR 4
# define OPENEXR_VERSION_MINOR 0
# define OPENEXR_VERSION_PATCH 0

#endif
Loading