From 4711d8f91ceed55bff23c62d45c4acf1424b07ac Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 18 Aug 2020 01:16:21 +0200 Subject: [PATCH] Set major release to 1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Syncthing Tray can be considered stable enough * Syncthing itself also made a 1.… release some time ago * The backend libraries still do *not* provide a stable API, see section "Using backend libraries" in README.md --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 92d6f6e..1201ef1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,9 +9,9 @@ set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}") set(META_APP_DESCRIPTION "Tray application for Syncthing") set(META_APP_CATEGORIES "Network;FileTransfer") set(META_GUI_OPTIONAL false) -set(META_VERSION_MAJOR 0) -set(META_VERSION_MINOR 11) -set(META_VERSION_PATCH 12) +set(META_VERSION_MAJOR 1) +set(META_VERSION_MINOR 0) +set(META_VERSION_PATCH 0) set(META_VERSION_EXACT_SONAME ON) set(META_ADD_DEFAULT_CPP_UNIT_TEST_APPLICATION ON)