Skip to content

Commit ec9f5bb

Browse files
committed
v3.88.1 version swap
1 parent cf1d631 commit ec9f5bb

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Please select a version to read that specific change log:
77
| Version | Name | Release Date |
88
| ------- | ---- | ------------ |
99
| [3.89](changelog/3.89/CHANGELOG-v3.89.md) | Tsugumi | in dev |
10+
| [3.88.1](changelog/3.88.1/CHANGELOG-v3.88.1.md) | Minami | 12th February 2025 |
1011
| [3.88](changelog/3.88/CHANGELOG-v3.88.md) | Minami | 11th February 2025 |
1112
| [3.87](changelog/3.87/CHANGELOG-v3.87.md) | Hanabi | 14th November 2024 |
1213
| [3.86](changelog/3.86/CHANGELOG-v3.86.md) | Aoi | 11th October 2024 |

changelog/3.88.1/CHANGELOG-v3.88.1.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Version 3.88.1 - Minami - 12th February 2025
2+
3+
## Bug Fixes
4+
5+
* Fixed `ReferenceError: GetFastValueOp is not defined` in NumberTweenBuilder (thanks Flow)
6+
* Reverted incorrect change made to `SafeRange` array util function.
7+
* Fixed `Array.Utils.GetFirst` so it correctly handles a negative start index. Fixes Container.getByName returning null and various other similar methods. Fix #7040 (thanks @XWILKINX)

changelog/3.89/CHANGELOG-v3.89.md

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
## Bug Fixes
88

9-
* Fixed `ReferenceError: GetFastValueOp is not defined` in NumberTweenBuilder (thanks Flow)
10-
119
## Examples, Documentation, Beta Testing and TypeScript
1210

1311
Thanks to the following for helping with the Phaser Examples, Beta Testing, Docs, and TypeScript definitions, either by reporting errors, fixing them, or helping author the docs:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phaser",
3-
"version": "3.89.0",
3+
"version": "3.88.1",
44
"release": "Tsugumi",
55
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.",
66
"author": "Richard Davey <[email protected]> (https://www.phaser.io)",

src/const.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var CONST = {
2020
* @type {string}
2121
* @since 3.0.0
2222
*/
23-
VERSION: '3.89',
23+
VERSION: '3.88.1',
2424

2525
/**
2626
* Phaser Release Version as displayed in the console.log header URL.
@@ -30,7 +30,7 @@ var CONST = {
3030
* @type {string}
3131
* @since 3.87.0
3232
*/
33-
LOG_VERSION: 'v389',
33+
LOG_VERSION: 'v388',
3434

3535
BlendModes: require('./renderer/BlendModes'),
3636

0 commit comments

Comments
 (0)