Skip to content

Commit

Permalink
Bump version and soname for 5.7.0alpha.
Browse files Browse the repository at this point in the history
Like 5.5.0alpha, 5.7.0alpha won't be released, it's just to mark that
the branch is not stable.

Once again there is no API/ABI stability for new features in devel
versions. The major soname won't be bumped even if API/ABI of new
features breaks between devel releases.
  • Loading branch information
JiaT75 committed Feb 24, 2024
1 parent a18fb1e commit 5d8d915
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/liblzma/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ liblzma_la_CPPFLAGS = \
-I$(top_srcdir)/src/liblzma/simple \
-I$(top_srcdir)/src/common \
-DTUKLIB_SYMBOL_PREFIX=lzma_
liblzma_la_LDFLAGS = -no-undefined -version-info 10:99:5
liblzma_la_LDFLAGS = -no-undefined -version-info 11:99:6

EXTRA_DIST += liblzma_generic.map liblzma_linux.map validate_map.sh
if COND_SYMVERS_GENERIC
Expand Down
6 changes: 3 additions & 3 deletions src/liblzma/api/lzma/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
#define LZMA_VERSION_MAJOR 5

/** \brief Minor version number of the liblzma release. */
#define LZMA_VERSION_MINOR 5
#define LZMA_VERSION_MINOR 7

/** \brief Patch version number of the liblzma release. */
#define LZMA_VERSION_PATCH 2
#define LZMA_VERSION_PATCH 0

/**
* \brief Version stability marker
Expand All @@ -32,7 +32,7 @@
* - LZMA_VERSION_STABILITY_BETA
* - LZMA_VERSION_STABILITY_STABLE
*/
#define LZMA_VERSION_STABILITY LZMA_VERSION_STABILITY_BETA
#define LZMA_VERSION_STABILITY LZMA_VERSION_STABILITY_ALPHA

/** \brief Commit version number of the liblzma release */
#ifndef LZMA_VERSION_COMMIT
Expand Down
2 changes: 1 addition & 1 deletion src/liblzma/liblzma_generic.map
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ global:
lzma_str_to_filters;
} XZ_5.2;

XZ_5.5.2beta {
XZ_5.6.0 {
global:
lzma_mt_block_size;
} XZ_5.4;
2 changes: 1 addition & 1 deletion src/liblzma/liblzma_linux.map
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ global:
lzma_str_to_filters;
} XZ_5.2;

XZ_5.5.2beta {
XZ_5.6.0 {
global:
lzma_mt_block_size;
} XZ_5.4;

0 comments on commit 5d8d915

Please sign in to comment.