Skip to content

Commit 4527c3e

Browse files
committed
r158
1 parent 737f116 commit 4527c3e

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

build/three.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
'use strict';
77

8-
const REVISION = '158dev';
8+
const REVISION = '158';
99

1010
const MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
1111
const TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };

build/three.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ console.warn( 'Scripts "build/three.js" and "build/three.min.js" are deprecated
1010
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.THREE = {}));
1111
})(this, (function (exports) { 'use strict';
1212

13-
const REVISION = '158dev';
13+
const REVISION = '158';
1414

1515
const MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
1616
const TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };

build/three.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/three.module.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright 2010-2023 Three.js Authors
44
* SPDX-License-Identifier: MIT
55
*/
6-
const REVISION = '158dev';
6+
const REVISION = '158';
77

88
const MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
99
const TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };

build/three.module.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "three",
3-
"version": "0.157.0",
3+
"version": "0.158.0",
44
"description": "JavaScript 3D library",
55
"type": "module",
66
"main": "./build/three.js",

src/constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const REVISION = '158dev';
1+
export const REVISION = '158';
22

33
export const MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
44
export const TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };

0 commit comments

Comments
 (0)