Skip to content

Commit 4f02873

Browse files
authored
Update version to v2.3.3 (#174)
1 parent 77d3c34 commit 4f02873

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project are documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [2.3.3] - 2021-2-5
8+
9+
### Fixed
10+
11+
- Fixed [#167](https://github.com/team-charls/charls/issues/167), Decoding\Encoding fails on IBM s390x CPU (Big Endian architecture)
12+
13+
### Changed
14+
15+
- CTest is now used in the CI build pipeline to test the output of the Linux and macOS builds.
16+
717
## [2.3.2] - 2021-1-29
818

919
### Fixed
@@ -50,6 +60,12 @@ Typically CMake will select the latest C++ standard version that used C++ compil
5060
- GCC shared library release builds are now using LTO (Link Time Optimization).
5161
- Some functions use compiler intrinsics for slightly better performance.
5262

63+
## [2.2.1] - 2022-2-3
64+
65+
### Fixed
66+
67+
- Backport of fix for [#167](https://github.com/team-charls/charls/issues/167), Decoding\Encoding fails on IBM s390x CPU (Big Endian architecture).
68+
5369
## [2.2.0] - 2021-1-10
5470

5571
### Added

SECURITY.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7-
| 2.3.2 | :white_check_mark: |
7+
| 2.3.3 | :white_check_mark: |
8+
| 2.3.2 | :x: |
89
| 2.3.1 | :x: |
910
| 2.3.0 | :x: |
11+
| 2.2.1 | :white_check_mark: |
1012
| 2.2.0 | :x: |
1113
| 2.1.0 | :x: |
1214
| 2.0.0 | :x: |

include/charls/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ extern "C" {
1616

1717
#define CHARLS_VERSION_MAJOR 2
1818
#define CHARLS_VERSION_MINOR 3
19-
#define CHARLS_VERSION_PATCH 2
19+
#define CHARLS_VERSION_PATCH 3
2020

2121
/// <summary>
2222
/// Returns the version of CharLS in the semver format "major.minor.patch" or "major.minor.patch-pre_release"

0 commit comments

Comments
 (0)