You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update MAJOR, MINOR, BUILD, SOVERSION in CMakeLists.txt
4
+
* update MAJOR, MINOR, BUILD in appveyor.yml
5
+
* update CHANGELOG with
6
+
`github_changelog_generator --token TOKEN_HERE --exclude-labels gcode_fixed,OpjVersion-1.x --release-url "https://github.com/uclouvain/openjpeg/releases/%s" --since-tag v2.3.1 --future-release v2.4.0 --output append2changelog.md --user uclouvain --project openjpeg --exclude-tags version.1.0` . TOKEN_HERE is created at https://github.com/settings/tokens
7
+
* update NEWS.md
8
+
* git tag -a v2.4.0 -m "OpenJPEG v2.4.0 release"
9
+
* git push origin --tags
10
+
* add post to OpenJPEG website in gh-pages branch in _posts/ subdirectory. See commit https://github.com/uclouvain/openjpeg/commit/6563d704f5fb896209dd862ccfc6b97eb9183c5c
11
+
* change binversion of openjpeg website in _config.yml in gh-pages branch
12
+
* update release description if needed
13
+
* update openjpeg.json with latest release
14
+
* update OPJ_LATEST_VERSION in abi-check.sh, uncomment and update OPJ_PREVIOUS_VERSION in abi-check.sh, and push
15
+
* comment back OPJ_PREVIOUS_VERSION and push
16
+
* build doc and update Doxygen on website
17
+
* manual build on Windows:
18
+
- cmake .. -G "Visual Studio 15 2017" -A x64 -DCMAKE_CONFIGURATION_TYPES=Release -DBUILD_THIRDPARTY=ON -D CPACK_GENERATOR:STRING=ZIP -D CPACK_PACKAGE_FILE_NAME:STRING=openjpeg-v2.4.0-windows-x64
Copy file name to clipboardExpand all lines: NEWS.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,25 @@
2
2
3
3
More details in the [CHANGELOG](https://github.com/uclouvain/openjpeg/blob/master/CHANGELOG.md)
4
4
5
+
## OpenJPEG 2.5.0 (May 2022)
6
+
7
+
No API/ABI break compared to v2.4.0, but additional symbols for subset of components decoding (hence the MINOR version bump).
8
+
9
+
* Encoder: add support for generation of TLM markers [\#1359](https://github.com/uclouvain/openjpeg/pull/1359)
10
+
* Decoder: add support for high throughput \(HTJ2K\) decoding. [\#1381](https://github.com/uclouvain/openjpeg/pull/1381)
11
+
* Decoder: add support for partial bitstream decoding [\#1407](https://github.com/uclouvain/openjpeg/pull/1407)
12
+
* Bug fixes (including security fixes)
13
+
14
+
## OpenJPEG 2.4.0 (December 2020)
15
+
16
+
No API/ABI break compared to v2.3.1, but additional symbols for subset of components decoding (hence the MINOR version bump).
17
+
18
+
* Encoder: add support for multithreading [\#1248](https://github.com/uclouvain/openjpeg/pull/1248)
19
+
* Encoder: add support for generation of PLT markers [\#1246](https://github.com/uclouvain/openjpeg/pull/1246)
20
+
* Encoder: single-threaded performance improvements in forward DWT for 5-3 and 9-7 (and other improvements) [\#1253](https://github.com/uclouvain/openjpeg/pull/1253)
21
+
* Encoder: support IMF profiles [\#1235](https://github.com/uclouvain/openjpeg/pull/1235)
description: 'OpenJPEG $(appveyor_repo_tag_name) has been released. More info [here](https://github.com/uclouvain/openjpeg/blob/$(appveyor_repo_tag_name)/NEWS) and a detailed view [here](https://github.com/uclouvain/openjpeg/blob/$(appveyor_repo_tag_name)/CHANGES).'
33
-
provider: GitHub
34
-
auth_token:
35
-
secure: XUL+IoRRw8U/4tupa/fMpinxurft7WRQHZiWHMLO5iuFbwZ+C3vCjVVVM+5Ebky7 # your encrypted token from GitHub
36
-
artifact: /.*\.zip/ # upload all zip packages to release assets
37
-
draft: true
38
-
prerelease: false
39
-
on:
40
-
appveyor_repo_tag: true # deploy on tag push only
41
-
OPJ_CI_INCLUDE_IF_DEPLOY: 1
30
+
#deploy:
31
+
# #release: openjpeg-$(appveyor_repo_tag_name)
32
+
# description: 'OpenJPEG $(appveyor_repo_tag_name) has been released. More info [here](https://github.com/uclouvain/openjpeg/blob/$(appveyor_repo_tag_name)/NEWS) and a detailed view [here](https://github.com/uclouvain/openjpeg/blob/$(appveyor_repo_tag_name)/CHANGES).'
33
+
# provider: GitHub
34
+
# auth_token:
35
+
# secure: XUL+IoRRw8U/4tupa/fMpinxurft7WRQHZiWHMLO5iuFbwZ+C3vCjVVVM+5Ebky7 # your encrypted token from GitHub
36
+
# artifact: /.*\.zip/ # upload all zip packages to release assets
37
+
# draft: true
38
+
# prerelease: false
39
+
# on:
40
+
# appveyor_repo_tag: true # deploy on tag push only
0 commit comments