From b0f5a7097894ad23a12215194ecf5a27a5e7872a Mon Sep 17 00:00:00 2001 From: qblk Date: Wed, 18 Dec 2024 19:18:20 +0000 Subject: [PATCH] app: release 2.0.16 --- CHANGELOG.md | 8 +++++++- CMakeLists.txt | 2 +- tools/publish.sh | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a8592302..142191b0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,15 @@ 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). -## Unrelased +## [2.0.16] - 2024-12-19 +### Added: +- Genuine check flow + ### Changed: +- Enhanced advertisement - Updates GDK to 0.74.1 +- The default fee rate is now the minimum relay fee rate +- Stable Jade firmware update ## [2.0.15] - 2024-11-21 ### Fixed: diff --git a/CMakeLists.txt b/CMakeLists.txt index 00a51ba8b..03a2ccdab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(green VERSION 2.0.15 LANGUAGES CXX) +project(green VERSION 2.0.16 LANGUAGES CXX) option(GREEN_WAYLAND "Include Wayland support" OFF) diff --git a/tools/publish.sh b/tools/publish.sh index 518535d4b..5eca27ea7 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=2.0.15 +VERSION=2.0.16 if [[ -z "$CHANNEL" ]]; then echo "Must set CHANNEL environment variable" 1>&2