aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/serd_config.h3
-rw-r--r--src/serdi.c8
2 files changed, 7 insertions, 4 deletions
diff --git a/src/serd_config.h b/src/serd_config.h
index e6b3aa4b..909a357d 100644
--- a/src/serd_config.h
+++ b/src/serd_config.h
@@ -35,9 +35,6 @@
#ifndef SERD_SRC_SERD_CONFIG_H
#define SERD_SRC_SERD_CONFIG_H
-// Define version unconditionally so a warning will catch a mismatch
-#define SERD_VERSION "1.1.1"
-
#if !defined(SERD_NO_DEFAULT_CONFIG)
// We need unistd.h to check _POSIX_VERSION
diff --git a/src/serdi.c b/src/serdi.c
index 27e6d782..d3ff0813 100644
--- a/src/serdi.c
+++ b/src/serdi.c
@@ -13,6 +13,7 @@
#include "serd/status.h"
#include "serd/syntax.h"
#include "serd/uri.h"
+#include "serd/version.h"
#include "serd/writer.h"
#ifdef _WIN32
@@ -79,11 +80,16 @@ guess_syntax(const char* const filename)
static int
print_version(void)
{
- printf("serdi " SERD_VERSION " <http://drobilla.net/software/serd>\n");
+ printf("serdi %d.%d.%d <http://drobilla.net/software/serd>\n",
+ SERD_MAJOR_VERSION,
+ SERD_MINOR_VERSION,
+ SERD_MICRO_VERSION);
+
printf("Copyright 2011-2023 David Robillard <d@drobilla.net>.\n"
"License ISC: <https://spdx.org/licenses/ISC>.\n"
"This is free software; you are free to change and redistribute it."
"\nThere is NO WARRANTY, to the extent permitted by law.\n");
+
return 0;
}