Skip to content

Commit 39e8c50

Browse files
committed
Prepare for OpenJPEG v2.5.2 release
1 parent 61309d7 commit 39e8c50

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [v2.5.2](https://github.com/uclouvain/openjpeg/releases/v2.5.2) (2024-02-28)
4+
5+
[Full Changelog](https://github.com/uclouvain/openjpeg/compare/v2.5.1...v2.5.2)
6+
7+
**Closed issues:**
8+
9+
- API breakage in 2.5.1 / openjpeg version no longer detected \(openjpeg.h no longer includes opj\_config.h\) [\#1514](https://github.com/uclouvain/openjpeg/issues/1514)
10+
11+
**Merged pull requests:**
12+
13+
- openjpeg.h: make sure to include opj\_config.h \(fixes \#1514\) [\#1515](https://github.com/uclouvain/openjpeg/pull/1515) ([rouault](https://github.com/rouault))
14+
315
## [v2.5.1](https://github.com/uclouvain/openjpeg/releases/v2.5.1) (2024-02-26)
416

517
[Full Changelog](https://github.com/uclouvain/openjpeg/compare/v2.5.0...v2.5.1)

CMakeLists.txt

+2-1
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 1)
29+
set(OPENJPEG_VERSION_BUILD 2)
3030
set(OPENJPEG_VERSION
3131
"${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}")
3232
set(PACKAGE_VERSION
@@ -53,6 +53,7 @@ set(PACKAGE_VERSION
5353
# 2.4.0 | 7
5454
# 2.5.0 | 7
5555
# 2.5.1 | 7
56+
# 2.5.2 | 7
5657
# above is the recommendation by the OPJ team. If you really need to override this default,
5758
# you can specify your own OPENJPEG_SOVERSION at cmake configuration time:
5859
# cmake -DOPENJPEG_SOVERSION:STRING=42 /path/to/openjpeg

NEWS.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## OpenJPEG 2.5.2 (Feb 2024)
6+
7+
No API/ABI break compared to v2.5.1
8+
9+
* Make sure openjpeg.h includes opj_config.h [\#1514](https://github.com/uclouvain/openjpeg/issues/1514)
10+
511
## OpenJPEG 2.5.1 (Feb 2024)
612

713
No API/ABI break compared to v2.5.0

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.5.1.{build}
1+
version: 2.5.2.{build}
22
branches:
33
except:
44
- coverity_scan

0 commit comments

Comments
 (0)