From: Eric Biggers Date: Thu, 22 Nov 2012 03:29:06 +0000 (-0600) Subject: Define version macros in wimlib.h X-Git-Tag: v1.2.0~18 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=d5c2c580d35447207e1e8c0d62c9e55b77ba20d1;hp=9c4d58824c53710f891cfab234bf0bc697030ebe Define version macros in wimlib.h --- diff --git a/NEWS b/NEWS index 3651a6bb..e3e3af48 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ Only the most important changes more recent than version 0.6 are noted here. -Version 1.1.1: +Version 1.2.0: Appending images to a WIM is now be done by default without re-building the whole WIM. Use the --rebuild flag to get the old behavior (which was to re-build the entire WIM when a new image is appended). diff --git a/README b/README index a24e1946..6352e6bd 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ WIMLIB -This is wimlib version 1.1.0 (November 2012). wimlib can be used to read, +This is wimlib version 1.2.0 (November 2012). wimlib can be used to read, write, and mount files in the Windows Imaging Format (WIM files). These files are normally created by using the `imagex.exe' utility on Windows, but this library provides a free implementation of imagex for UNIX-based systems. diff --git a/configure.ac b/configure.ac index dc601934..03b44e6c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wimlib], [1.1.0], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.2.0], [ebiggers3@gmail.com]) AC_CONFIG_SRCDIR([src/wim.c]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/src/wimlib.h b/src/wimlib.h index 6033576b..690f9dee 100644 --- a/src/wimlib.h +++ b/src/wimlib.h @@ -211,6 +211,10 @@ #include #include +#define WIMLIB_MAJOR_VERSION 1 +#define WIMLIB_MINOR_VERSION 2 +#define WIMLIB_PATCH_VERSION 0 + /** * Opaque structure that represents a WIM file. This is an in-memory structure * and need not correspond to a specific on-disk file. However, a ::WIMStruct