]> wimlib.net Git - wimlib/commitdiff
v1.13.0 v1.13.0
authorEric Biggers <ebiggers3@gmail.com>
Fri, 23 Nov 2018 23:35:07 +0000 (15:35 -0800)
committerEric Biggers <ebiggers3@gmail.com>
Fri, 23 Nov 2018 23:35:07 +0000 (15:35 -0800)
24 files changed:
Makefile.am
NEWS
README
README.WINDOWS
configure.ac
debian/changelog
doc/man1/mkwinpeimg.1
doc/man1/wimapply.1
doc/man1/wimcapture.1
doc/man1/wimdelete.1
doc/man1/wimdir.1
doc/man1/wimexport.1
doc/man1/wimextract.1
doc/man1/wiminfo.1
doc/man1/wimjoin.1
doc/man1/wimlib-imagex.1
doc/man1/wimmount.1
doc/man1/wimoptimize.1
doc/man1/wimsplit.1
doc/man1/wimupdate.1
doc/man1/wimverify.1
include/wimlib.h
rpm/wimtools.spec
tools/update-version

index 92c09feb8ac259fe2ec164e5fee94f61f75d3ac2..dc653f7ac1d2aa3ea0c0fca7fa8ea552425bf052 100644 (file)
@@ -201,7 +201,7 @@ libwim_la_CFLAGS =          \
        $(LIBFUSE_CFLAGS)       \
        $(LIBCRYPTO_CFLAGS)
 
-libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 29:0:14
+libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 30:0:15
 
 libwim_la_LIBADD =             \
        $(PTHREAD_LIBS)         \
diff --git a/NEWS b/NEWS
index b75e38048e18baf7a07d37d05a6f75ebdfb50f96..a727ebb1edfa79ec13761363157f85fdffb262a1 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,8 @@
-Version 1.13.0-BETA:
+Version 1.13.0:
        On Windows, wimlib now supports capturing and applying extended
        attributes (EAs).  It is compatible with DISM with the /EA option,
        available since Windows 10 version 1607.  wimlib's EA support is on by
-       default; no option has to be provided, and it should work on older
-       versions of Windows too.
+       default and works on older versions of Windows too.
 
        Partially fixed a bug where [ExclusionException] entries didn't take
        effect when the containing directory is matched by [ExclusionList].  It
diff --git a/README b/README
index 07e729ed9a8ace836d9e274e9bbc8aa3067f97cf..8eb699f28eda330b6e94bd7fce1532292cdb2922 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
                                   INTRODUCTION
 
-This is wimlib version 1.13.0-BETA (January 2018).  wimlib is a C library for
+This is wimlib version 1.13.0 (November 2018).  wimlib is a C library for
 creating, modifying, extracting, and mounting files in the Windows Imaging
 Format (WIM files).  wimlib and its command-line frontend 'wimlib-imagex'
 provide a free and cross-platform alternative to Microsoft's WIMGAPI, ImageX,
index c54a773bedab3cbaed3fca4a2003fd86da885582..d778fb52f49d13b688ddb0a214b75dd7f36e24aa 100644 (file)
@@ -94,7 +94,7 @@ from source, potentially with customizations.  Although wimlib's build system is
 designed for UNIX-like systems and is easiest to use on Linux, it's possible to
 build Windows binaries on Windows using Cygwin with MinGW.  To do this, follow
 the instructions below.  For the sake of example, I'll assume you are building a
-64-bit version of wimlib v1.11.0.
+64-bit version of wimlib v1.13.0.
 
 Run the Cygwin installer, available from https://www.cygwin.com/setup-x86.exe.
 When you get to the package selection screen, choose the following additional
@@ -107,13 +107,13 @@ packages from category "Devel":
     - mingw64-x86_64-pkg-config
     - mingw64-x86_64-winpthreads
 
-Download wimlib's source code from https://wimlib.net/downloads/wimlib-1.11.0.tar.gz.
+Download wimlib's source code from https://wimlib.net/downloads/wimlib-1.13.0.tar.gz.
 
 Start a Cygwin terminal and run the following commands:
 
     cd /cygdrive/c/Users/example/Downloads # (or wherever you downloaded the source to)
-    tar xf wimlib-1.11.0.tar.gz
-    cd wimlib-1.11.0
+    tar xf wimlib-1.13.0.tar.gz
+    cd wimlib-1.13.0
     ./configure --host=x86_64-w64-mingw32
     make
 
@@ -162,12 +162,12 @@ version you want, bootstrap the repository, and run the Windows release script:
 
     git clone git://wimlib.net/wimlib
     cd wimlib
-    git checkout v1.11.0
+    git checkout v1.13.0
     ./bootstrap
     ./tools/make-windows-release x86_64
 
 The release script will download and build libxml2 and winpthreads as static
 libraries, then build wimlib, then do some final tasks and bundle the resulting
 files up into a ZIP archive.  If successful you'll end up with a file like
-"wimlib-1.11.0-windows-x86_64-bin.zip", just like the official releases.  For
+"wimlib-1.13.0-windows-x86_64-bin.zip", just like the official releases.  For
 32-bit binaries just use "i686" instead of "x86_64".
index 329a5d9df86068a897cd719af52909b31d07410e..95f97c7e92ab09f1385128bb5b80866db37fc453 100644 (file)
@@ -1,6 +1,6 @@
 ###############################################################################
 
-AC_INIT([wimlib], [1.13.0-BETA], [ebiggers3@gmail.com])
+AC_INIT([wimlib], [1.13.0], [ebiggers3@gmail.com])
 AC_CONFIG_SRCDIR([src/wim.c])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([build-aux])
index d94aae86e4035089756af6d3aa51622d3c10239c..8a199682ac519245a50138851205ebc857d5c5c6 100644 (file)
@@ -1,3 +1,9 @@
+wimlib (1.13.0-1) unstable; urgency=low
+
+  * Update to v1.13.0
+
+ -- Eric Biggers <ebiggers3@gmail.com>  Thu, 22 Nov 2018 17:04:35 -0800
+
 wimlib (1.12.0-1) unstable; urgency=low
 
   * Update to v1.12.0
index 5ddafe845399374ba95d14b5d406ec2804d00f4f..0cc020c348e64ecb402eb24fce287dc7da0e6202 100644 (file)
@@ -1,4 +1,4 @@
-.TH MKWINPEIMG "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH MKWINPEIMG "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 mkwinpeimg \- Make a customized bootable image of Windows PE
 .SH SYNOPSIS
index 5c160d0e9964cb6d2d946b98e60c76486551573b..b2181361f24fb285f92135ea354980f5d7c4723b 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMAPPLY "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMAPPLY "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimapply \- Apply a WIM image
 .SH SYNOPSIS
index 40ef2476244b120e33b200f172f8d002fe3e068e..760eadb5a5009ee4ec26486681fd034acbe32adb 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMCAPTURE "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMCAPTURE "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimcapture, wimappend \- Capture or append a WIM image
 .SH SYNOPSIS
index 20e0801bbe62cabf1868eaf05fbb5f253c08a714..c3c41b74e4234c004bcde1ac8d013b92a6d182c2 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMDELETE "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMDELETE "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimdelete \- Delete an image from a WIM archive
 .SH SYNOPSIS
index 5d6cef4671fd7b2d741483f6409f408d728c8db9..685172d662bb84f3fde0658cc15a0e3e496d9d3b 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMDIR "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMDIR "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimdir \- List the files contained in a WIM image
 .SH SYNOPSIS
index 6cea5faa43bcbfdd7abb7ecbb3a0b1968bbd1d57..9acd3c18ec02235e007a36f297c98cdda5c49b3a 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMEXPORT "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMEXPORT "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimexport \- Export image(s) from a WIM archive
 .SH SYNOPSIS
index 86275a2b406142d581d926c03f52abe23a21519f..db5e2c853f3669c570967515fe1a104b9b820051 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMEXTRACT "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMEXTRACT "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimextract \- Extract files from a WIM image
 .SH SYNOPSIS
index 0567517a072cc79c2da501e9166316c384c8bfbb..8b09aa247ef4890886adc1bd78c160fa42e7604a 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMINFO "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMINFO "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wiminfo \- Display or change information about a WIM file or image
 .SH SYNOPSIS
index 6073aab30d4882db9d0231cb7b033b1c291e34c7..57d187d4d7d6fd7fca3756a335a16782ed9febb4 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMJOIN "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMJOIN "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimjoin\- Join a split WIM into a standalone WIM
 .SH SYNOPSIS
index 6c7c880891f7845338f1081dc7c0db048fd0c11f..7a90796ae21eed0bfe0be83ec437c8ad869f6dfc 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMLIB-IMAGEX 1 "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMLIB-IMAGEX 1 "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimlib-imagex \- Extract, create, modify, or mount a WIM archive
 .SH SYNOPSIS
index 9b33445e4c33bbe0aa9f651914f4cabdb11a7656..d29a754ce7e53db89e956c74241c3ecf880b5aeb 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMMOUNT "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMMOUNT "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimmount, wimmountrw, wimunmount \- Mount or unmount a WIM image
 .SH SYNOPSIS
index 657f7df65b0d8ef46967dffdc479f039d511adf5..f36c3776306dd2a07461ed9bfcb168aae663d38c 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMOPTIMIZE "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMOPTIMIZE "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimoptimize \- Optimize a WIM archive
 .SH SYNOPSIS
index de1eb207a19b16d050fc83f4d84cdb04841963b2..bfc12025077b4e8f06c0705030409e6d14609d83 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMSPLIT "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMSPLIT "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimsplit \- Split a WIM archive into multiple parts
 .SH SYNOPSIS
index a3beadf9a67329791d6d8f99f8b9f1fa54e6642b..c1007a36f1be19b5df38d258e549a6022e979822 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMUPDATE "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMUPDATE "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimupdate \- Update a WIM image
 .SH SYNOPSIS
index 774a5ab5ff415af0f9275b8eeb6f4b0dcc300cb6..450cce3267ec39ef8258e8e5f5544f14c4c3f156 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMVERIFY "1" "July 2017" "wimlib 1.12.0" "User Commands"
+.TH WIMVERIFY "1" "November 2018" "wimlib 1.13.0" "User Commands"
 .SH NAME
 wimverify \- Verify a WIM archive
 .SH SYNOPSIS
index c2b5b81f88a38478882eb9f74d616d0ba09fb0ee..43c38526349f9ae456c819e6d5582d3c7d189443 100644 (file)
@@ -11,7 +11,7 @@
 /**
  * @mainpage
  *
- * This is the documentation for the library interface of wimlib 1.12.0, a C
+ * This is the documentation for the library interface of wimlib 1.13.0, a C
  * library for creating, modifying, extracting, and mounting files in the
  * Windows Imaging (WIM) format.  This documentation is intended for developers
  * only.  If you have installed wimlib and want to know how to use the @b
 #define WIMLIB_MAJOR_VERSION 1
 
 /** Minor version of the library (for example, the 2 in 1.2.5). */
-#define WIMLIB_MINOR_VERSION 12
+#define WIMLIB_MINOR_VERSION 13
 
 /** Patch version of the library (for example, the 5 in 1.2.5). */
 #define WIMLIB_PATCH_VERSION 0
index 8979a7e7d1e28487d7316d2ba0cd914459ef52c7..2df0eeae07cbd81aeab075ec5c9f630debc2b7c7 100644 (file)
@@ -1,6 +1,6 @@
 Name:      wimtools
 Summary:   Tools to create, extract, modify, and mount WIM files
-Version:   1.12.0
+Version:   1.13.0
 Release:   1
 License:   GPLv3+
 URL:       https://wimlib.net
index 99f7b74dacae27bece918d44d72f872ac91eb1f7..e795dadff9fa12604fcfcb78eadcee3a0eccd0a6 100755 (executable)
@@ -1,14 +1,14 @@
 #!/bin/bash
 
-oldver='1\.11\.0'
-oldmonth=January
+oldver='1\.12\.0'
+oldmonth=July
 oldyear=2017
 
 newmajor=1
-newminor=12
+newminor=13
 newpatch=0
-newmonth=July
-newyear=2017
+newmonth=November
+newyear=2018
 
 
 newver="${newmajor}.${newminor}.${newpatch}"