diff --git a/CMakeLists.txt b/CMakeLists.txt index 0ac4f03..b107c46 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10) -project(zectl LANGUAGES C VERSION 0.1.4 DESCRIPTION "BE Manager") +project(zectl LANGUAGES C VERSION 0.1.5 DESCRIPTION "BE Manager") set (CMAKE_C_STANDARD 11) diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index b36d2a8..5c236d9 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: John Ramsden pkgname=zectl -pkgver=0.1.4 +pkgver=0.1.5 pkgrel=1 pkgdesc="ZFS Boot Environment manager." url="http://github.com/johnramsden/${pkgname}" diff --git a/src/zectl.c b/src/zectl.c index 91ef9ce..95b0786 100644 --- a/src/zectl.c +++ b/src/zectl.c @@ -15,7 +15,7 @@ #include char const *const ZE_PROGRAM = "zectl"; -char const *const ZECTL_VERSION = "0.1.4"; +char const *const ZECTL_VERSION = "0.1.5"; /* Function pointer to command */ typedef libze_error (*command_func)(libze_handle *lzeh, int argc, char **argv);