diff --git a/CHANGELOG.md b/CHANGELOG.md index 0852683e8..8ca4d6731 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +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). -## Unreleased +## [2.0.6] - 2024-05-22 ### Changed: +- Experimental support to unlock Jade in QR mode - Better QR Code scanning ### Fixed: +- Do not disable send and receive buttons - Request camera permission when required +- Application startup in macOS Sonoma ## [2.0.5] - 2024-05-08 ### Added: diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a01aae7b..9958e0a69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(green VERSION 2.0.5 LANGUAGES CXX) +project(green VERSION 2.0.6 LANGUAGES CXX) option(GREEN_WAYLAND "Include Wayland support" OFF) diff --git a/tools/publish.sh b/tools/publish.sh index 79c5f3c73..dfc25c8c2 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=2.0.5 +VERSION=2.0.6 if [[ -z "$CHANNEL" ]]; then echo "Must set CHANNEL environment variable" 1>&2