aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2008-04-25 13:32:35 +0300
committerLasse Collin <lasse.collin@tukaani.org>2008-04-25 13:32:35 +0300
commit8f804c29aa8471ccd6438ddca254092b8869ca52 (patch)
treeff0dc429ae3667eea2b03d4b8f27065ae70cda5c /src/liblzma
parentFix a memory leak by calling free(extra->data) in (diff)
downloadxz-8f804c29aa8471ccd6438ddca254092b8869ca52.tar.xz
Bumped version number to 4.999.3alpha. It will become 5.0.0
once we have a stable release (won't be very soon). The version number is no longer related to version of LZMA SDK. Made some small Automake-related changes to toplevel Makefile.am and configure.ac.
Diffstat (limited to '')
-rw-r--r--src/liblzma/api/lzma/version.h22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/liblzma/api/lzma/version.h b/src/liblzma/api/lzma/version.h
index 5ccda502..d88aa305 100644
--- a/src/liblzma/api/lzma/version.h
+++ b/src/liblzma/api/lzma/version.h
@@ -24,14 +24,18 @@
/**
* \brief Compile-time version number
*
- * The version number is of format xyyyuuus where
- * - x is the major LZMA SDK version
- * - yyy is the minor LZMA SDK version
- * - uuu is LZMA Utils version (reset to zero every time SDK version
- * is incremented)
+ * The version number is of format xyyyzzzs where
+ * - x = major
+ * - yyy = minor
+ * - zzz = revision
* - s indicates stability: 0 = alpha, 1 = beta, 2 = stable
+ *
+ * See the README file for details about the version numbering.
+ *
+ * \note The version number of LZMA Utils (and thus liblzma)
+ * has nothing to with the version number of LZMA SDK.
*/
-#define LZMA_VERSION UINT32_C(40420030)
+#define LZMA_VERSION UINT32_C(49990030)
/**
@@ -49,11 +53,5 @@ extern const uint32_t lzma_version_number;
*
* This function may be useful if you want to display which version of
* libilzma your application is currently using.
- *
- * \return Returns a pointer to a statically allocated string constant,
- * which contains the version number of liblzma. The format of
- * the version string is usually (but not necessarily) x.y.z
- * e.g. "4.42.1". Alpha and beta versions contain a suffix
- * ("4.42.0alpha").
*/
extern const char *const lzma_version_string;