diff --git a/CHANGELOG.md b/CHANGELOG.md index a644cf025..92af4c4fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.15] - 2024-11-21 +### Fixed: +- Layout of advertisement card in wallet overview +- Complete tracking of advertisement events +- Reset of analytics identifier + ## [2.0.14] - 2024-11-14 ### Changed: - Static linkage of libicu diff --git a/CMakeLists.txt b/CMakeLists.txt index 70bbabbad..00a51ba8b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(green VERSION 2.0.14 LANGUAGES CXX) +project(green VERSION 2.0.15 LANGUAGES CXX) option(GREEN_WAYLAND "Include Wayland support" OFF) diff --git a/tools/publish.sh b/tools/publish.sh index 5e8d1aa8e..518535d4b 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=2.0.14 +VERSION=2.0.15 if [[ -z "$CHANNEL" ]]; then echo "Must set CHANNEL environment variable" 1>&2