这是indexloc提供的服务,不要输入任何密码
Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions:

env:
CONFORMANCE_REPO_HASH: a3ee00672dd1b58c2b5a7d5e8b9e4a7b9e53ec1e
LIBJXL_VERSION: "0.11.0"
LIBJXL_VERSION: "0.11.1"
LIBJXL_ABI_VERSION: "0.11"

concurrency:
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.11.0] - 2024-09-13
## [0.11.1] - 2024-26-11

### Fixed
- Huffman lookup table size fix (#3871 -
[CVE-2024-11403](https://www.cve.org/cverecord?id=CVE-2024-11403))
- Check height limit in modular trees. (#3943 -
[CVE-2024-11498](https://www.cve.org/cverecord?id=CVE-2024-11498))

## [0.11.0] - 2024-09-13

Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
jpeg-xl (0.11.1) UNRELEASED; urgency=medium

* Bump JPEG XL version to 0.11.1.

-- JPEG XL Maintainers <jpegxl@google.com> Tue, 26 Nov 2024 12:09:23 +0100

jpeg-xl (0.11.0) unstable; urgency=medium

* Bump JPEG XL version to 0.11.0.
Expand Down
2 changes: 1 addition & 1 deletion lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

set(JPEGXL_MAJOR_VERSION 0)
set(JPEGXL_MINOR_VERSION 11)
set(JPEGXL_PATCH_VERSION 0)
set(JPEGXL_PATCH_VERSION 1)
set(JPEGXL_LIBRARY_VERSION
"${JPEGXL_MAJOR_VERSION}.${JPEGXL_MINOR_VERSION}.${JPEGXL_PATCH_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 @@ -544,7 +544,7 @@ libjxl_major_version = 0

libjxl_minor_version = 11

libjxl_patch_version = 0
libjxl_patch_version = 1

libjxl_public_headers = [
"include/jxl/cms.h",
Expand Down
2 changes: 1 addition & 1 deletion lib/lib.gni
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ libjxl_major_version = 0

libjxl_minor_version = 11

libjxl_patch_version = 0
libjxl_patch_version = 1

libjxl_public_headers = [
"include/jxl/cms.h",
Expand Down
Loading