Skip to content

Commit feb6d8b

Browse files
eustascopybara-github
authored andcommitted
prepare for 1.1.0rc
PiperOrigin-RevId: 558736892
1 parent 3ebb2d3 commit feb6d8b

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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`

c/common/version.h

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
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)
@@ -32,8 +32,20 @@
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_ */

scripts/libbrotlidec.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ URL: https://github.com/google/brotli
88
Description: Brotli decoder library
99
Version: @PACKAGE_VERSION@
1010
Libs: -L${libdir} -lbrotlidec
11-
Requires.private: libbrotlicommon >= 1.0.2
11+
Requires.private: libbrotlicommon >= 1.1.0
1212
Cflags: -I${includedir}

scripts/libbrotlienc.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ URL: https://github.com/google/brotli
88
Description: Brotli encoder library
99
Version: @PACKAGE_VERSION@
1010
Libs: -L${libdir} -lbrotlienc
11-
Requires.private: libbrotlicommon >= 1.0.2
11+
Requires.private: libbrotlicommon >= 1.1.0
1212
Cflags: -I${includedir}

0 commit comments

Comments
 (0)