diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 887ceca..047d034 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 message = Bump version: {current_version} → {new_version} commit = True tag = False diff --git a/CMakeLists.txt b/CMakeLists.txt index a347a0d..25e75a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,7 +68,7 @@ set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Oded Lazar") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "execute commands as another user") set(CPACK_RPM_PACKAGE_RELOCATABLE TRUE) set(CPACK_RPM_RELOCATION_PATHS /etc) -set(CPACK_PACKAGE_VERSION "0.2.1") +set(CPACK_PACKAGE_VERSION "0.2.2") set(CPACK_DEBIAN_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION}") set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "${CPU_ARCH}") set(CPACK_OUTPUT_FILE_PREFIX "${CMAKE_SOURCE_DIR}/pkg") diff --git a/README.md b/README.md index 1a75908..eaf0f9c 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ $ mkdir -p suex/build && cd suex/build && cmake .. && cd .. ## Project Status -Version `0.2.1` is out and has complete feature parity with the OpenBSD's `doas`. +Version `0.2.2` is out and has complete feature parity with the OpenBSD's `doas`. ## Authors diff --git a/include/version.h b/include/version.h index aeac8d6..f8dd200 100644 --- a/include/version.h +++ b/include/version.h @@ -1,5 +1,5 @@ #pragma once namespace suex { -#define VERSION "0.2.1" +#define VERSION "0.2.2" }