diff --git a/CHANGELOG.md b/CHANGELOG.md index 14c69cee2..ecbe68c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +## [22.22.0] - 07/27/2023 + +### Code + +* Fix casing in corpse money and decay time. ([#3511](https://github.com/EQEmu/Server/pull/3511)) @Kinglykrab 2023-07-23 + +### Crash Fix + +* Guard against Spells:MaxTotalSlotsPET being set above client allowed maximum. ([#3507](https://github.com/EQEmu/Server/pull/3507)) @Valorith 2023-07-22 + +### Data Buckets + +* Distributed Databucket Caching ([#3500](https://github.com/EQEmu/Server/pull/3500)) @Kinglykrab 2023-07-24 + +### Database + +* Fix console output in database:dump --dump-output-to-console @Akkadius 2023-07-25 + +### Fixes + +* Escape search string in #find item ([#3510](https://github.com/EQEmu/Server/pull/3510)) @Kinglykrab 2023-07-22 + +### Quest API + +* Add GetMobTypeIdentifier() to Perl/Lua ([#3512](https://github.com/EQEmu/Server/pull/3512)) @Kinglykrab 2023-07-28 + +### Saylink + +* Fix cases where saylinks were not being cached ([#3508](https://github.com/EQEmu/Server/pull/3508)) @Akkadius 2023-07-20 + ## [22.21.2] - 07/19/2023 ### Databuckets diff --git a/common/version.h b/common/version.h index f478c1633..e91cff00c 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.21.2-dev" // always append -dev to the current version for custom-builds +#define CURRENT_VERSION "22.22.0-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 54ab8e579..80a46ca91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eqemu-server", - "version": "22.21.2", + "version": "22.22.0", "repository": { "type": "git", "url": "https://github.com/EQEmu/Server.git"