]> wimlib.net Git - wimlib/commitdiff
Define version macros in wimlib.h
authorEric Biggers <ebiggers3@gmail.com>
Thu, 22 Nov 2012 03:29:06 +0000 (21:29 -0600)
committerEric Biggers <ebiggers3@gmail.com>
Thu, 22 Nov 2012 03:29:06 +0000 (21:29 -0600)
NEWS
README
configure.ac
src/wimlib.h

diff --git a/NEWS b/NEWS
index 3651a6bb49db1f3703db65c1f9d81213372faab3..e3e3af48757429029ea7ba2c0cb51999a2d1ac1b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
 Only the most important changes more recent than version 0.6 are noted here.
 
 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).
        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 a24e1946c413dd10e83e924e378ed33be25e38b7..6352e6bdc832d0a8718e428f7b13490e8e2225aa 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
                                   WIMLIB
 
                                   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.
 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.
index dc6019346cfae1ba692a21b2651e2ffcb05a944d..03b44e6c009e119e518b70f6ef607e8af317f341 100644 (file)
@@ -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])
 AC_CONFIG_SRCDIR([src/wim.c])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([build-aux])
index 6033576be6489d96823e9757c150dede40958a9f..690f9dee72b29a1739496e1fe850ed51418fbedd 100644 (file)
 #include <stdbool.h>
 #include <inttypes.h>
 
 #include <stdbool.h>
 #include <inttypes.h>
 
+#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
 /**
  * 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