summaryrefslogtreecommitdiff
path: root/prism/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'prism/version.h')
-rw-r--r--prism/version.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/prism/version.h b/prism/version.h
index 35cc835d23..181b398462 100644
--- a/prism/version.h
+++ b/prism/version.h
@@ -6,6 +6,8 @@
#ifndef PRISM_VERSION_H
#define PRISM_VERSION_H
+#include "prism/compiler/exported.h"
+
/**
* The major version of the Prism library as an int.
*/
@@ -14,7 +16,7 @@
/**
* The minor version of the Prism library as an int.
*/
-#define PRISM_VERSION_MINOR 3
+#define PRISM_VERSION_MINOR 9
/**
* The patch version of the Prism library as an int.
@@ -24,6 +26,13 @@
/**
* The version of the Prism library as a constant string.
*/
-#define PRISM_VERSION "1.3.0"
+#define PRISM_VERSION "1.9.0"
+
+/**
+ * The prism version and the serialization format.
+ *
+ * @returns The prism version as a constant string.
+ */
+PRISM_EXPORTED_FUNCTION const char * pm_version(void);
#endif