From 8ff1d8be9d103b9e63a35fe3b4174ec3e010978a Mon Sep 17 00:00:00 2001 From: Tabascl Date: Sun, 7 Jul 2024 23:52:03 +0200 Subject: [PATCH] Bump version numbers --- PKGBUILD | 2 +- app/meson.build | 2 +- app/src/main.cxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 4598e25..abf2523 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=fantasize -pkgver=0.2.0 +pkgver=0.3.0 pkgrel=1 pkgdesc='C++ fan control for Linux' url='https://github.com/Tabascl/fantasize.git' diff --git a/app/meson.build b/app/meson.build index ab4d9c8..20e4424 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,4 +1,4 @@ -project('fantasize', 'cpp', version : '0.2.1', default_options : ['cpp_std=c++20']) +project('fantasize', 'cpp', version : '0.3.0', default_options : 'cpp_std=c++20') src = [ 'src/main.cxx', diff --git a/app/src/main.cxx b/app/src/main.cxx index fb10613..94ca7aa 100644 --- a/app/src/main.cxx +++ b/app/src/main.cxx @@ -20,7 +20,7 @@ #include -#define PROJECT_VERSION "v0.2.1" +#define PROJECT_VERSION "v0.3.0" namespace po = boost::program_options; namespace logging = boost::log;