File tree Expand file tree Collapse file tree 4 files changed +21
-7
lines changed
Expand file tree Collapse file tree 4 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## [ 1.1.0] - 2023-08-28
11+
1012### Added
1113 - decoder: ` BrotliDecoderAttachDictionary `
1214 - decoder: ` BrotliDecoderOnFinish ` callback behind ` BROTLI_REPORTING `
Original file line number Diff line number Diff line change 1818 BrotliEncoderVersion methods. */
1919
2020#define BROTLI_VERSION_MAJOR 1
21- #define BROTLI_VERSION_MINOR 0
22- #define BROTLI_VERSION_PATCH 9
21+ #define BROTLI_VERSION_MINOR 1
22+ #define BROTLI_VERSION_PATCH 0
2323
2424#define BROTLI_VERSION BROTLI_MAKE_HEX_VERSION( \
2525 BROTLI_VERSION_MAJOR, BROTLI_VERSION_MINOR, BROTLI_VERSION_PATCH)
3232 - interfaces not changed -> current:revision+1:age
3333 */
3434
35- #define BROTLI_ABI_CURRENT 1
36- #define BROTLI_ABI_REVISION 9
37- #define BROTLI_ABI_AGE 0
35+ #define BROTLI_ABI_CURRENT 2
36+ #define BROTLI_ABI_REVISION 0
37+ #define BROTLI_ABI_AGE 1
38+
39+ #if BROTLI_VERSION_MAJOR != (BROTLI_ABI_CURRENT - BROTLI_ABI_AGE )
40+ #error ABI/API version inconsistency
41+ #endif
42+
43+ #if BROTLI_VERSION_MINOR != BROTLI_ABI_AGE
44+ #error ABI/API version inconsistency
45+ #endif
46+
47+ #if BROTLI_VERSION_PATCH != BROTLI_ABI_REVISION
48+ #error ABI/API version inconsistency
49+ #endif
3850
3951#endif /* BROTLI_COMMON_VERSION_H_ */
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ URL: https://github.com/google/brotli
88Description: Brotli decoder library
99Version: @PACKAGE_VERSION@
1010Libs: -L${libdir} -lbrotlidec
11- Requires.private: libbrotlicommon >= 1.0.2
11+ Requires.private: libbrotlicommon >= 1.1.0
1212Cflags: -I${includedir}
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ URL: https://github.com/google/brotli
88Description: Brotli encoder library
99Version: @PACKAGE_VERSION@
1010Libs: -L${libdir} -lbrotlienc
11- Requires.private: libbrotlicommon >= 1.0.2
11+ Requires.private: libbrotlicommon >= 1.1.0
1212Cflags: -I${includedir}
You can’t perform that action at this time.
0 commit comments