summaryrefslogtreecommitdiff
path: root/prism/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'prism/version.h')
-rw-r--r--prism/version.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/prism/version.h b/prism/version.h
index 237796815f..181b398462 100644
--- a/prism/version.h
+++ b/prism/version.h
@@ -6,15 +6,17 @@
#ifndef PRISM_VERSION_H
#define PRISM_VERSION_H
+#include "prism/compiler/exported.h"
+
/**
* The major version of the Prism library as an int.
*/
-#define PRISM_VERSION_MAJOR 0
+#define PRISM_VERSION_MAJOR 1
/**
* The minor version of the Prism library as an int.
*/
-#define PRISM_VERSION_MINOR 24
+#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 "0.24.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