Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 3.8.5 #17603

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cocos/core/global-exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if (DEV) {
legacyCC._Test = {};
}

const engineVersion = '3.8.4';
const engineVersion = '3.8.5';

/**
* @en
Expand Down
6 changes: 3 additions & 3 deletions native/cocos/cocos-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ THE SOFTWARE.

#define COCOS_MAJOR_VERSION 3
#define COCOS_MINJOR_VERSION 8
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

syntax: 'MINJOR' is misspelled. Should be 'MINOR'.

#define COCOS_PATCH_VERSION 4
#define COCOS_VERSION_STRING "3.8.4"
#define COCOS_PATCH_VERSION 5
#define COCOS_VERSION_STRING "3.8.5"
#define COCOS_VERSION_DEFINED 1
#define COCOS_VERSION 30804
#define COCOS_VERSION 30805

// #define COCOS_PRE_RELEASE "release"
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cocos-creator",
"version": "3.8.4",
"version": "3.8.5",
"description": "Cocos Creator is a cross-platform 2D & 3D game engine written in C++ and TypeScript, licensed under MIT.",
"homepage": "http://www.cocos.com",
"license": "MIT",
Expand Down
Loading