From 758f1b3e4c767a9345a81b0d60873e57264d497f Mon Sep 17 00:00:00 2001 From: Aylur Date: Thu, 20 Jun 2024 16:29:10 +0200 Subject: fix(config): export version numbers --- src/config.vala.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/config.vala.in b/src/config.vala.in index 7db3963..752c754 100644 --- a/src/config.vala.in +++ b/src/config.vala.in @@ -1,6 +1,6 @@ namespace AstalNotifd { - const int MAJOR_VERSION = @MAJOR_VERSION@; - const int MINOR_VERSION = @MINOR_VERSION@; - const int MICRO_VERSION = @MICRO_VERSION@; - const string VERSION = "@VERSION@"; + public const int MAJOR_VERSION = @MAJOR_VERSION@; + public const int MINOR_VERSION = @MINOR_VERSION@; + public const int MICRO_VERSION = @MICRO_VERSION@; + public const string VERSION = "@VERSION@"; } -- cgit v1.2.3