Skip to content

Commit

Permalink
Bump version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
johnramsden committed Mar 21, 2020
1 parent edef276 commit f4e367a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.10)

project(zectl LANGUAGES C VERSION 0.1.0 DESCRIPTION "ZE ZFS library")
project(zectl LANGUAGES C VERSION 0.1.1 DESCRIPTION "BE Manager")

set (CMAKE_C_STANDARD 11)

Expand Down
4 changes: 2 additions & 2 deletions packaging/arch/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: John Ramsden <johnramsden [at] riseup [dot] net>

pkgname=zectl
pkgver=0.1.0
pkgver=0.1.1
pkgrel=1
pkgdesc="ZFS Boot Environment manager."
url="http://github.com/johnramsden/${pkgname}"
Expand All @@ -14,7 +14,7 @@ conflicts=("${pkgname}-git")
source=(${pkgname}-${pkgver}.tar.gz)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/johnramsden/${pkgname}/archive/v${pkgver}.tar.gz")

sha256sums=('d3612803043761113ac1e7c6a34f27f5c22a2f175dc93d255de47805281a6a30')
sha256sums=(SKIP) # Replace on update

build() {
cd "${srcdir}/${pkgname}-${pkgver}"
Expand Down
2 changes: 1 addition & 1 deletion src/zectl.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <string.h>

char const *const ZE_PROGRAM = "zectl";
char const *const ZECTL_VERSION = "0.1.0";
char const *const ZECTL_VERSION = "0.1.1";

/* Function pointer to command */
typedef libze_error (*command_func)(libze_handle *lzeh, int argc, char **argv);
Expand Down

0 comments on commit f4e367a

Please sign in to comment.