From 8219bc4e8c67561d977d53e17287b729fa29c0bd Mon Sep 17 00:00:00 2001 From: tobtoht Date: Tue, 2 Nov 2021 17:17:28 +0100 Subject: [PATCH] Bump version to 1.0.1 --- BUILDING.md | 6 +++--- CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index e85398c..cac4fc6 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -14,7 +14,7 @@ Binaries produced in this section are reproducible and their digests should matc #### 1. Clone -Replace `master` with the desired version tag (e.g. `1.0.0`) to build the release binary. +Replace `master` with the desired version tag (e.g. `1.0.1`) to build the release binary. ```bash git clone https://git.featherwallet.org/feather/feather.git @@ -61,7 +61,7 @@ Binaries produced in this section are not yet reproducible. #### 1. Clone -Replace `master` with the desired version tag (e.g. `1.0.0`) to build the release binary. +Replace `master` with the desired version tag (e.g. `1.0.1`) to build the release binary. ```bash git clone https://git.featherwallet.org/feather/feather.git @@ -123,7 +123,7 @@ git clone --branch master --recursive https://git.featherwallet.org/feather/feat cd feather ``` -Replace `master` with the desired version tag (e.g. `1.0.0`) to build the release binary. +Replace `master` with the desired version tag (e.g. `1.0.1`) to build the release binary. #### 2. Base image diff --git a/CMakeLists.txt b/CMakeLists.txt index d5a5d75..a539476 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ message(STATUS "Initiating compile using CMake ${CMAKE_VERSION}") set(VERSION_MAJOR "1") set(VERSION_MINOR "0") -set(VERSION_REVISION "0") +set(VERSION_REVISION "1") set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REVISION}") option(STATIC "Link libraries statically, requires static Qt")