Skip to content

Commit

Permalink
bump version to 0.12.0 (#3817)
Browse files Browse the repository at this point in the history
* bump version to 0.12.0

* update JPEGXL_SO_MINOR_VERSION

(cherry picked from commit 7609879f3d9071506dea8f537ad56d744ee83617)
  • Loading branch information
mo271 authored and eustas committed Dec 6, 2024
1 parent 9665281 commit 81e958a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
10 changes: 8 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
jpeg-xl (0.11.0) UNRELEASED; urgency=medium
jpeg-xl (0.12.0) UNRELEASED; urgency=medium

* Bump JPEG XL version to 0.12.0.

-- JPEG XL Maintainers <[email protected]> Fri, 13 Sep 2024 09:19:23 +0200

jpeg-xl (0.11.0) unstable; urgency=medium

* Bump JPEG XL version to 0.11.0.

-- JPEG XL Maintainers <[email protected]> Tue, 06 Aug 2024 14:35:34 +0200
-- JPEG XL Maintainers <[email protected]> Fri, 13 Sep 2024 09:19:23 +0200

jpeg-xl (0.10.2) unstable; urgency=medium

Expand Down
4 changes: 2 additions & 2 deletions lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://developers.google.com/open-source/licenses/bsd

set(JPEGXL_MAJOR_VERSION 0)
set(JPEGXL_MINOR_VERSION 11)
set(JPEGXL_MINOR_VERSION 12)
set(JPEGXL_PATCH_VERSION 0)
set(JPEGXL_LIBRARY_VERSION
"${JPEGXL_MAJOR_VERSION}.${JPEGXL_MINOR_VERSION}.${JPEGXL_PATCH_VERSION}")
Expand All @@ -16,7 +16,7 @@ set(JPEGXL_LIBRARY_VERSION
# It is important to update this value when making incompatible API/ABI changes
# so that programs that depend on libjxl can update their dependencies. Semantic
# versioning allows 0.y.z to have incompatible changes in minor versions.
set(JPEGXL_SO_MINOR_VERSION 11)
set(JPEGXL_SO_MINOR_VERSION 12)
if (JPEGXL_MAJOR_VERSION EQUAL 0)
set(JPEGXL_LIBRARY_SOVERSION
"${JPEGXL_MAJOR_VERSION}.${JPEGXL_SO_MINOR_VERSION}")
Expand Down
2 changes: 1 addition & 1 deletion lib/jxl_lists.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ libjxl_jpegli_wrapper_sources = [

libjxl_major_version = 0

libjxl_minor_version = 11
libjxl_minor_version = 12

libjxl_patch_version = 0

Expand Down
2 changes: 1 addition & 1 deletion lib/lib.gni
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ libjxl_jpegli_wrapper_sources = [

libjxl_major_version = 0

libjxl_minor_version = 11
libjxl_minor_version = 12

libjxl_patch_version = 0

Expand Down

0 comments on commit 81e958a

Please sign in to comment.