From 7e90ac89b7be77f55f63e0a997629bff9e32d0c2 Mon Sep 17 00:00:00 2001 From: qblk Date: Mon, 18 Nov 2024 18:29:27 +0000 Subject: [PATCH] app: release 2.0.14 --- CHANGELOG.md | 8 ++++++++ CMakeLists.txt | 2 +- tools/publish.sh | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bfcd49ea..a644cf025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ 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). +## [2.0.14] - 2024-11-14 +### Changed: +- Static linkage of libicu + +### Fixed: +- In-app advertisement on wallet overview +- Check for update on startup + ## [2.0.13] - 2024-11-14 ## Added: - Support in-app advertisement diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ae5cd3c9..70bbabbad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(green VERSION 2.0.13 LANGUAGES CXX) +project(green VERSION 2.0.14 LANGUAGES CXX) option(GREEN_WAYLAND "Include Wayland support" OFF) diff --git a/tools/publish.sh b/tools/publish.sh index 96e7d53cc..5e8d1aa8e 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=2.0.13 +VERSION=2.0.14 if [[ -z "$CHANNEL" ]]; then echo "Must set CHANNEL environment variable" 1>&2