diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e49bd9e1..650e68bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.18] - 2024-01-23 +### Fixed: +- Revert Qt to 6.8.0 to fix crash on macOS Intel +- Prevent overflow of unit selector + ## [2.0.17] - 2024-01-09 ### Added: - Graphical assets for Jade Plus diff --git a/CMakeLists.txt b/CMakeLists.txt index ec40191fe..a8b3733ba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(green VERSION 2.0.17 LANGUAGES CXX) +project(green VERSION 2.0.18 LANGUAGES CXX) option(GREEN_WAYLAND "Include Wayland support" OFF) diff --git a/tools/publish.sh b/tools/publish.sh index 6efde5d5e..a29f5d89f 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=2.0.17 +VERSION=2.0.18 if [[ -z "$CHANNEL" ]]; then echo "Must set CHANNEL environment variable" 1>&2