diff options
author | AzerothCoreBot <azerothcorebot@gmail.com> | 2021-06-28 03:26:00 +0000 |
---|---|---|
committer | AzerothCoreBot <azerothcorebot@gmail.com> | 2021-06-28 03:26:00 +0000 |
commit | 53ab534f0bd31b3f4dbe90020dfb491a57a016cb (patch) | |
tree | e7dee7c9c3c434a7dbaab95343b34dfa7af69a9f | |
parent | c35dde6fae732269357b78fb796fba21956b83fc (diff) |
chore(DB): import pending files
Referenced commit(s): c35dde6fae732269357b78fb796fba21956b83fc
-rw-r--r-- | acore.json | 2 | ||||
-rw-r--r-- | doc/changelog/master.md | 39 | ||||
-rw-r--r-- | doc/changelog/pendings/changes_1624804780405304000.md | 34 |
3 files changed, 40 insertions, 35 deletions
diff --git a/acore.json b/acore.json index ed4292bec0..e6fc8aaf3e 100644 --- a/acore.json +++ b/acore.json @@ -1,5 +1,5 @@ { "name": "azerothcore-wotlk", - "version": "4.0.0-dev.2", + "version": "4.0.0-dev.3", "license": "AGPL3" } diff --git a/doc/changelog/master.md b/doc/changelog/master.md index fb36667fc4..5baf4d1e39 100644 --- a/doc/changelog/master.md +++ b/doc/changelog/master.md @@ -1,3 +1,42 @@ +## 4.0.0-dev.3 | Commit: [c35dde6fae732269357b78fb796fba21956b83fc +](https://github.com/azerothcore/azerothcore-wotlk/commit/c35dde6fae732269357b78fb796fba21956b83fc + + +Changelog for commit "[refactor(Collision): Update some methods to UpperCamelCase](https://github.com/azerothcore/azerothcore-wotlk/commit/b84f9b8a4b334632cb37dcebbb2dd4e087f65610)" + +### Changes + +```diff +- getPosition +- getBounds +- getBounds2 +- getInstanceMapTree +- getModelInstances +- getPosInfo +- getMeshData +- getGroupModels +- getIntersectionTime +- getObjectHitPos +- getAreaInfo ++ GetPosition ++ GetBounds ++ GetBounds2 ++ GetInstanceMapTree ++ GetModelInstances ++ GetPosInfo ++ GetMeshData ++ GetGroupModels ++ GetIntersectionTime ++ GetObjectHitPos ++ GetAreaInfo +``` + +### How to upgrade + +If you are using any of those methods, simply rename it by changing the first letter of the method from lowercase to uppercase. + +Example: `getAreaInfo` -> `GetAreaInfo` + ## 4.0.0-dev.2 | Commit: [3f70d0b80ff483f142ffbebf8960aeb503913a35](https://github.com/azerothcore/azerothcore-wotlk/commit/3f70d0b80ff483f142ffbebf8960aeb503913a35) diff --git a/doc/changelog/pendings/changes_1624804780405304000.md b/doc/changelog/pendings/changes_1624804780405304000.md deleted file mode 100644 index 1f070ae95a..0000000000 --- a/doc/changelog/pendings/changes_1624804780405304000.md +++ /dev/null @@ -1,34 +0,0 @@ -Changelog for commit "[refactor(Collision): Update some methods to UpperCamelCase](https://github.com/azerothcore/azerothcore-wotlk/commit/b84f9b8a4b334632cb37dcebbb2dd4e087f65610)" - -### Changes - -```diff -- getPosition -- getBounds -- getBounds2 -- getInstanceMapTree -- getModelInstances -- getPosInfo -- getMeshData -- getGroupModels -- getIntersectionTime -- getObjectHitPos -- getAreaInfo -+ GetPosition -+ GetBounds -+ GetBounds2 -+ GetInstanceMapTree -+ GetModelInstances -+ GetPosInfo -+ GetMeshData -+ GetGroupModels -+ GetIntersectionTime -+ GetObjectHitPos -+ GetAreaInfo -``` - -### How to upgrade - -If you are using any of those methods, simply rename it by changing the first letter of the method from lowercase to uppercase. - -Example: `getAreaInfo` -> `GetAreaInfo` |