diff --git a/CHANGELOG.md b/CHANGELOG.md index 57e9a4fd7..9ee78cb9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.12] - 2024-09-30 ### Changed: - Improve address verification with Jade on redeposit - Updates GDK to 0.73.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 08235501f..4586ce4fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(green VERSION 2.0.11 LANGUAGES CXX) +project(green VERSION 2.0.12 LANGUAGES CXX) option(GREEN_WAYLAND "Include Wayland support" OFF) diff --git a/tools/publish.sh b/tools/publish.sh index c22925f0c..80e0414a4 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=2.0.11 +VERSION=2.0.12 if [[ -z "$CHANNEL" ]]; then echo "Must set CHANNEL environment variable" 1>&2