From d39978155a2b47e45bad3f0f4d34865cf57e6f7f Mon Sep 17 00:00:00 2001 From: Jackson Huff Date: Sat, 8 Apr 2023 13:34:14 -0400 Subject: [PATCH] Bump to 0.6.0 --- CMakeLists.txt | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e813aee4..87efb8f63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.16) #make a universal binary on macOS set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE) -project(Clipboard LANGUAGES CXX C VERSION 0.5.0) +project(Clipboard LANGUAGES CXX C VERSION 0.6.0) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED True) diff --git a/README.md b/README.md index f4b6659b7..1ea146d75 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ You can also get the latest Clipboard revision [from GitHub Actions](https://nig ### Install Manually You'll need CMake and C++20 support, and if you want X11 and/or Wayland compatibility, you'll also need libx11 and/or libwayland. -Get the latest release instead of the latest commit by adding `--branch 0.5.0` right after `git clone...`. +Get the latest release instead of the latest commit by adding `--branch 0.6.0` right after `git clone...`. Change the system installation prefix by adding `-DCMAKE_INSTALL_PREFIX=/custom/prefix` to `cmake ..`. ```bash