summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-version.c
diff options
context:
space:
mode:
Diffstat (limited to 'libappstream-glib/as-version.c')
-rw-r--r--libappstream-glib/as-version.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/libappstream-glib/as-version.c b/libappstream-glib/as-version.c
new file mode 100644
index 0000000..228ba90
--- /dev/null
+++ b/libappstream-glib/as-version.c
@@ -0,0 +1,50 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
+ *
+ * Licensed under the GNU Lesser General Public License Version 2.1
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+/**
+ * SECTION:as-version
+ * @short_description: Helpers for the current runtime version.
+ * @include: appstream-glib.h
+ * @stability: Unstable
+ *
+ * The version number can be different between build-time and runtime.
+ */
+
+#include "config.h"
+
+#include "as-version.h"
+
+/**
+ * as_version_string:
+ *
+ * Gets the libappstream-glib installed runtime version.
+ *
+ * Returns: a version numer, e.g. "0.7.8"
+ *
+ * Since: 0.7.8
+ **/
+const gchar *
+as_version_string (void)
+{
+ return G_STRINGIFY(AS_MAJOR_VERSION) "."
+ G_STRINGIFY(AS_MINOR_VERSION) "."
+ G_STRINGIFY(AS_MICRO_VERSION);
+}