diff --git a/CHANGELOG.md b/CHANGELOG.md index f753677a4..b815bf7a7 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 +## [2.0.1] - 2024-03-05 ### Added: - Manual coin selection for L-BTC - List relevant accounts in the assets details diff --git a/CMakeLists.txt b/CMakeLists.txt index db8750017..e34a54a31 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(green VERSION 2.0.0 LANGUAGES CXX) +project(green VERSION 2.0.1 LANGUAGES CXX) option(GREEN_WAYLAND "Include Wayland support" OFF) diff --git a/tools/publish.sh b/tools/publish.sh index 8542e27ce..309e906ba 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=2.0.0 +VERSION=2.0.1 if [[ -z "$CHANNEL" ]]; then echo "Must set CHANNEL environment variable" 1>&2