diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rwxr-xr-x | mkwinbins.sh | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ecd6e20..e4bd731 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.8] - 2019-12-30 ### Added - Experimental Windows port using MinGW cross compilation toolchain. - Port to BSD systems. diff --git a/configure.ac b/configure.ac index f0869bf..e5d0a5c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.60]) -AC_INIT([squashfs-tools-ng], [0.7], [goliath@infraroot.at], squashfs-tools-ng) +AC_INIT([squashfs-tools-ng], [0.8], [goliath@infraroot.at], squashfs-tools-ng) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign dist-xz subdir-objects]) AM_SILENT_RULES([yes]) diff --git a/mkwinbins.sh b/mkwinbins.sh index 65b743e..0a72d66 100755 --- a/mkwinbins.sh +++ b/mkwinbins.sh @@ -2,8 +2,8 @@ set -e -W32_ZIP_NAME="squashfs-tools-ng-0.7-mingw32" -W64_ZIP_NAME="squashfs-tools-ng-0.7-mingw64" +W32_ZIP_NAME="squashfs-tools-ng-0.8-mingw32" +W64_ZIP_NAME="squashfs-tools-ng-0.8-mingw64" W32_DIR="$(pwd)/$W32_ZIP_NAME" W32_PREFIX="i686-w64-mingw32" |