Skip to content

Commit aa82d0d

Browse files
committed
Bump 3.0.0
1 parent 3ab1ca2 commit aa82d0d

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

core/axmol.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,7 @@ namespace ax
3636

3737
AX_DLL const char* axmolVersion()
3838
{
39-
return "axmol-" AX_VERSION_STR_FULL;
40-
}
41-
42-
AX_DLL const char* cocos2dVersion()
43-
{
44-
return axmolVersion();
39+
return AX_VERSION_STR_FULL;
4540
}
4641

4742
}

core/axmolver.h.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
/* Define the axmol version */
44
// 0x00 HI ME LO
55
// 00 03 08 00
6-
#define AX_VERSION_MAJOR 2
7-
#define AX_VERSION_MINOR 3
8-
#define AX_VERSION_PATCH 3
6+
#define AX_VERSION_MAJOR 3
7+
#define AX_VERSION_MINOR 0
8+
#define AX_VERSION_PATCH 0
99

1010
/* Define axmol version helper macros */
1111
#define AX_VERSION_MAKE(a, b, c) ((a << 16) | (b << 8) | (c & 0xff))

core/cocos2d.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ extensions use it, i.g fairygui, live2d ...
4040

4141
namespace ax
4242
{
43-
44-
AX_DLL const char* cocos2dVersion();
45-
4643
/** Backward compatibility with old axmol projects */
4744

4845
using Sprite3D = MeshRenderer;

0 commit comments

Comments
 (0)