diff --git a/CHANGELOG.md b/CHANGELOG.md index 2690fb8ee..ef51cc08e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [22.15.1] - 06/19/2023 + +### Schema + +* Add `chatchannel_reserved_names` table to `database_schema.h` + ## [22.15.0] - 06/19/2023 ### Code diff --git a/common/database_schema.h b/common/database_schema.h index 603e6f91d..43a95c77a 100644 --- a/common/database_schema.h +++ b/common/database_schema.h @@ -256,6 +256,7 @@ namespace DatabaseSchema { { return { "chatchannels", + "chatchannel_reserved_names", "command_settings", "content_flags", "db_str", diff --git a/common/version.h b/common/version.h index a5d66d7db..ea5de02bc 100644 --- a/common/version.h +++ b/common/version.h @@ -25,7 +25,7 @@ // Build variables // these get injected during the build pipeline -#define CURRENT_VERSION "22.15.0-dev" // always append -dev to the current version for custom-builds +#define CURRENT_VERSION "22.15.1-dev" // always append -dev to the current version for custom-builds #define LOGIN_VERSION "0.8.0" #define COMPILE_DATE __DATE__ #define COMPILE_TIME __TIME__ diff --git a/package.json b/package.json index 3b8cd10e7..18210525f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eqemu-server", - "version": "22.15.0", + "version": "22.15.1", "repository": { "type": "git", "url": "https://github.com/EQEmu/Server.git"