From 7c7f62b5ed72adc1915a76f3b66d3d1db34413bb Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Mon, 18 Jan 2016 15:25:16 -0500 Subject: bump version to 0.3.0 --- README.md | 27 +++++++++++++++++++++++++++ src/globals.h | 4 ++-- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c92bd71..d784373 100644 --- a/README.md +++ b/README.md @@ -70,3 +70,30 @@ latency. * Telnet server implementation is not fully conforming * Initial account login time is bogus + +## Versioning Scheme + +Versions are numbered using the MAJOR.MINOR.BUGFIX scheme. + +Current stable is 0.3.0. + +Major versions mark major milestones (see below), minor versions mark +incremental milestones and compatibility of data files, and bugfix +versions mark major bugfixes that don't warrant a new major or minor +number. + +### Roadmap + +#### 0.4.0 + +* Object support +* User inventory support + +#### 0.5.0 + +* Verb support +* World hooks/scripting + +#### 0.6.0 + +* Dynamic world editing diff --git a/src/globals.h b/src/globals.h index eb04f2e..141b362 100644 --- a/src/globals.h +++ b/src/globals.h @@ -58,9 +58,9 @@ #define WORLDFILE "world.dat" #define LOGFILE "netcosm.log" -#define WORLD_MAGIC 0xff467777 +#define WORLD_MAGIC 0x31415926 #define MAX_FAILURES 3 -#define NETCOSM_VERSION "0.2" +#define NETCOSM_VERSION "0.3.0" /* username length */ #define MAX_NAME_LEN 32 -- cgit v1.1