Skip to content

Commit db9258e

Browse files
committed
Bump version and soname for 5.8.0
Also remove the LZMA_UNSTABLE macro.
1 parent bfb752a commit db9258e

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

src/liblzma/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ liblzma_la_CPPFLAGS = \
2020
-I$(top_srcdir)/src/liblzma/simple \
2121
-I$(top_srcdir)/src/common \
2222
-DTUKLIB_SYMBOL_PREFIX=lzma_
23-
liblzma_la_LDFLAGS = -no-undefined -version-info 12:2:7
23+
liblzma_la_LDFLAGS = -no-undefined -version-info 13:0:8
2424

2525
EXTRA_DIST += liblzma_generic.map liblzma_linux.map validate_map.sh
2626
if COND_SYMVERS_GENERIC

src/liblzma/api/lzma/bcj.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ typedef struct {
9898
} lzma_options_bcj;
9999

100100

101-
#ifdef LZMA_UNSTABLE
102101
/**
103102
* \brief Raw ARM64 BCJ encoder
104103
*
@@ -194,4 +193,3 @@ extern LZMA_API(size_t) lzma_bcj_x86_encode(
194193
*/
195194
extern LZMA_API(size_t) lzma_bcj_x86_decode(
196195
uint32_t start_offset, uint8_t *buf, size_t size) lzma_nothrow;
197-
#endif

src/liblzma/api/lzma/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
#define LZMA_VERSION_MAJOR 5
2020

2121
/** \brief Minor version number of the liblzma release. */
22-
#define LZMA_VERSION_MINOR 7
22+
#define LZMA_VERSION_MINOR 8
2323

2424
/** \brief Patch version number of the liblzma release. */
25-
#define LZMA_VERSION_PATCH 2
25+
#define LZMA_VERSION_PATCH 0
2626

2727
/**
2828
* \brief Version stability marker
@@ -32,7 +32,7 @@
3232
* - LZMA_VERSION_STABILITY_BETA
3333
* - LZMA_VERSION_STABILITY_STABLE
3434
*/
35-
#define LZMA_VERSION_STABILITY LZMA_VERSION_STABILITY_BETA
35+
#define LZMA_VERSION_STABILITY LZMA_VERSION_STABILITY_STABLE
3636

3737
/** \brief Commit version number of the liblzma release */
3838
#ifndef LZMA_VERSION_COMMIT

src/liblzma/common/common.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@
4242

4343
#define LZMA_API(type) LZMA_API_EXPORT type LZMA_API_CALL
4444

45-
#define LZMA_UNSTABLE
46-
4745
#include "lzma.h"
4846

4947
// This is for detecting modern GCC and Clang attributes

src/liblzma/liblzma_generic.map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ global:
127127
lzma_mt_block_size;
128128
} XZ_5.4;
129129

130-
XZ_5.7.2beta {
130+
XZ_5.8 {
131131
global:
132132
lzma_bcj_arm64_encode;
133133
lzma_bcj_arm64_decode;

src/liblzma/liblzma_linux.map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ global:
142142
lzma_mt_block_size;
143143
} XZ_5.4;
144144

145-
XZ_5.7.2beta {
145+
XZ_5.8 {
146146
global:
147147
lzma_bcj_arm64_encode;
148148
lzma_bcj_arm64_decode;

0 commit comments

Comments
 (0)