diff options
author | Aylur <[email protected]> | 2024-06-20 16:29:10 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-06-20 16:29:10 +0200 |
commit | 758f1b3e4c767a9345a81b0d60873e57264d497f (patch) | |
tree | 1a4f85121ea7e7ff75b771968b75763361d7a51d | |
parent | a8319e1374e1860fa348b2965957ad9f15a8843f (diff) |
fix(config): export version numbers
-rw-r--r-- | src/config.vala.in | 8 |
1 files changed, 4 insertions, 4 deletions
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@"; } |