From a813b7f6c9064f5665483d8d93fac408d6b37510 Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Mon, 12 Jan 2026 14:45:10 +0300 Subject: [PATCH] bump version --- AUR/PKGBUILD | 2 +- CMakeLists.txt | 2 +- VERSION | 2 +- src/core/common/version.hpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AUR/PKGBUILD b/AUR/PKGBUILD index 27fb161..b7773fb 100644 --- a/AUR/PKGBUILD +++ b/AUR/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Daniel Dada pkgname=clrsync -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="Color scheme manager" arch=('x86_64') diff --git a/CMakeLists.txt b/CMakeLists.txt index 59c3e79..9a9a210 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(clrsync VERSION 1.0.1 LANGUAGES CXX) +project(clrsync VERSION 1.0.2 LANGUAGES CXX) include(GNUInstallDirs) diff --git a/VERSION b/VERSION index 7dea76e..6d7de6e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.1 +1.0.2 diff --git a/src/core/common/version.hpp b/src/core/common/version.hpp index cff7c36..104cec9 100644 --- a/src/core/common/version.hpp +++ b/src/core/common/version.hpp @@ -6,7 +6,7 @@ namespace clrsync::core { -const std::string GIT_SEMVER = "1.0.1+git.gd722499"; +const std::string GIT_SEMVER = "1.0.1+git.g9803f49"; const std::string version_string(); } // namespace clrsync::core