diff --git a/AUR/PKGBUILD b/AUR/PKGBUILD index 44ea686..9d1afd9 100644 --- a/AUR/PKGBUILD +++ b/AUR/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Daniel Dada pkgname=clrsync -pkgver=0.1.7 +pkgver=1.0.0 pkgrel=1 pkgdesc="Color scheme manager" arch=('x86_64') diff --git a/CMakeLists.txt b/CMakeLists.txt index 375d44c..cc42de3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(clrsync VERSION 0.1.7 LANGUAGES CXX) +project(clrsync VERSION 1.0.0 LANGUAGES CXX) include(GNUInstallDirs) diff --git a/VERSION b/VERSION index 1180819..3eefcb9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.7 +1.0.0 diff --git a/src/core/common/version.hpp b/src/core/common/version.hpp index d8ee13c..d1b4c54 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 = "0.1.7+git.g8112096"; +const std::string GIT_SEMVER = "0.1.7+git.gd17776b"; const std::string version_string(); } // namespace clrsync::core