Skip to content

Commit f173b55

Browse files
committed
Prepare for OpenJPEG v2.5.4 release
1 parent 93c6e59 commit f173b55

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [v2.5.4](https://github.com/uclouvain/openjpeg/releases/v2.5.4) (2025-09-20)
4+
5+
[Full Changelog](https://github.com/uclouvain/openjpeg/compare/v2.5.3...v2.5.4)
6+
7+
**Closed issues:**
8+
9+
- CMake configure warning with CMake 3.30 and newer [\#1579](https://github.com/uclouvain/openjpeg/issues/1579)
10+
11+
**Merged pull requests:**
12+
13+
- pkgconfig: drop unused libraries from `Libs.private` [\#1591](https://github.com/uclouvain/openjpeg/pull/1591) ([bgilbert](https://github.com/bgilbert))
14+
- Fix CMake warning: Compatibility with CMake \< 3.10 will be removed [\#1580](https://github.com/uclouvain/openjpeg/pull/1580) ([dzenanz](https://github.com/dzenanz))
15+
- code documentation updates [\#1576](https://github.com/uclouvain/openjpeg/pull/1576) ([weanti](https://github.com/weanti))
16+
- Fixed ICC profile copy failure on write [\#1574](https://github.com/uclouvain/openjpeg/pull/1574) ([mircomir](https://github.com/mircomir))
17+
- opj\_jp2\_read\_header: Check for error after parsing header. [\#1573](https://github.com/uclouvain/openjpeg/pull/1573) ([sebras](https://github.com/sebras)) (CVE-2025-54874)
18+
319
## [v2.5.3](https://github.com/uclouvain/openjpeg/releases/v2.5.3) (2024-12-09)
420

521
[Full Changelog](https://github.com/uclouvain/openjpeg/compare/v2.5.2...v2.5.3)

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ include_regular_expression("^.*$")
2626
# OPENJPEG version number, useful for packaging and doxygen doc:
2727
set(OPENJPEG_VERSION_MAJOR 2)
2828
set(OPENJPEG_VERSION_MINOR 5)
29-
set(OPENJPEG_VERSION_BUILD 3)
29+
set(OPENJPEG_VERSION_BUILD 4)
3030
set(OPENJPEG_VERSION
3131
"${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}")
3232
set(PACKAGE_VERSION
@@ -55,6 +55,7 @@ set(PACKAGE_VERSION
5555
# 2.5.1 | 7
5656
# 2.5.2 | 7
5757
# 2.5.3 | 7
58+
# 2.5.4 | 7
5859
# above is the recommendation by the OPJ team. If you really need to override this default,
5960
# you can specify your own OPENJPEG_SOVERSION at cmake configuration time:
6061
# cmake -DOPENJPEG_SOVERSION:STRING=42 /path/to/openjpeg

NEWS.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
More details in the [CHANGELOG](https://github.com/uclouvain/openjpeg/blob/master/CHANGELOG.md)
44

5+
## OpenJPEG 2.5.4 (Sept 2025)
6+
7+
No API/ABI break compared to v2.5.3
8+
9+
### Bug fixes
10+
11+
* opj\_jp2\_read\_header: Check for error after parsing header. [\#1573](https://github.com/uclouvain/openjpeg/pull/1573)
12+
* pkgconfig: drop unused libraries from `Libs.private` [\#1591](https://github.com/uclouvain/openjpeg/pull/1591)
13+
* Fix CMake warning: Compatibility with CMake \< 3.10 will be removed [\#1580](https://github.com/uclouvain/openjpeg/pull/1580)
14+
* Fixed ICC profile copy failure on write [\#1574](https://github.com/uclouvain/openjpeg/pull/1574)
15+
516
## OpenJPEG 2.5.3 (Dec 2024)
617

718
No API/ABI break compared to v2.5.2

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.5.3.{build}
1+
version: 2.5.4.{build}
22
branches:
33
except:
44
- coverity_scan

0 commit comments

Comments
 (0)