From 4888fc2f061f938e8c67db27b3cc9fd6bb3bd7d5 Mon Sep 17 00:00:00 2001 From: Borgbyte Date: Wed, 27 Sep 2023 21:03:50 +0100 Subject: [PATCH] app: release 1.2.8 --- CHANGELOG.md | 7 +++++++ CMakeLists.txt | 2 +- tools/publish.sh | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1743597b4..9164bc22b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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). +## [1.2.8] - 2023-09-27 +### Fixed +- Regression on balance update +- Duplicate entries in Transaction list +- Crash when using Jade with custom pin server +- Show correct Jade's firmware hash + ## [1.2.7] - 2023-09-08 ### Added - Show fiat denominated amounts in transaction details dialog diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e24567b7..29ed4043d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(green VERSION 1.2.7 LANGUAGES CXX) +project(green VERSION 1.2.8 LANGUAGES CXX) option(GREEN_WAYLAND "Include Wayland support" OFF) diff --git a/tools/publish.sh b/tools/publish.sh index 58418965f..4d0c3fa3e 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=1.2.7 +VERSION=1.2.8 HASH_WINDOWS=`cat SHA256SUMS.asc | grep Windows | awk '{split($0, a," "); print a[1]}'` HASH_MAC=`cat SHA256SUMS.asc | grep Mac | awk '{split($0, a," "); print a[1]}'`