summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2024-08-26 22:09:50 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2024-08-26 22:09:50 +0100
commit45a2f22f4ef7e251b0183e5bae71ad12967a9f52 (patch)
treeb2437a44f09d2d3d3fd834a109f73d1638d39fba /src
parentadd54d0e2b68e88f3f0b705cbf274b2d4426125b (diff)
Begin the new version cycle yet again at 0.9
Diffstat (limited to 'src')
-rw-r--r--src/sst.c6
-rw-r--r--src/version.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/sst.c b/src/sst.c
index a928c59..d580a30 100644
--- a/src/sst.c
+++ b/src/sst.c
@@ -237,11 +237,11 @@ DEF_CCMD_HERE(sst_printversion, "Display plugin version information", 0) {
// interested parties identify the version of SST used by just writing a dummy
// cvar to the top of the demo. this will be removed later, once there's a less
// stupid way of achieving the same goal.
-#if VERSION_MAJOR != 0 || VERSION_MINOR != 8
+#if VERSION_MAJOR != 0 || VERSION_MINOR != 9
#error Need to change this manually, since codegen requires it to be spelled \
out in DEF_CVAR - better yet, can we get rid of this yet?
#endif
-DEF_CVAR(__sst_0_8_beta, "", 0, CON_HIDDEN | CON_DEMO)
+DEF_CVAR(__sst_0_9_beta, "", 0, CON_HIDDEN | CON_DEMO)
// most plugin callbacks are unused - define dummy functions for each signature
static void VCALLCONV nop_v_v(void *this) {}
@@ -267,7 +267,7 @@ static bool already_loaded = false, skip_unload = false;
// auto-update message. see below in do_featureinit()
static const char *updatenotes = "\
-* Fixed L4D series warp testing (sst_l4d_testwarp) broken by last update\n\
+* More behind-the-scenes changes, as always\n\
";
#include <featureinit.gen.h> // generated by build/codegen.c
diff --git a/src/version.h b/src/version.h
index 14cde7d..fc82f66 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,5 +1,5 @@
#define NAME "SST"
#define LONGNAME "Source Speedrun Tools Beta"
#define VERSION_MAJOR 0
-#define VERSION_MINOR 8
-#define VERSION "0.8"
+#define VERSION_MINOR 9
+#define VERSION "0.9"