Skip to content

Commit e0a31ea

Browse files
committed
r109
1 parent e98a8fb commit e0a31ea

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Please also include a live example if possible. You can start from these templat
1717
##### Three.js version
1818

1919
- [ ] Dev
20-
- [ ] r108
20+
- [ ] r109
2121
- [ ] ...
2222

2323
##### Browser

build/three.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797

9898
}
9999

100-
var REVISION = '109dev';
100+
var REVISION = '109';
101101
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
102102
var TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
103103
var CullFaceNone = 0;

build/three.min.js

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/three.module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ if ( Object.assign === undefined ) {
9191

9292
}
9393

94-
var REVISION = '109dev';
94+
var REVISION = '109';
9595
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
9696
var TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
9797
var CullFaceNone = 0;

editor/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// r108
1+
// r109
22

33
const assets = [
44
'./',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "three",
3-
"version": "0.108.0",
3+
"version": "0.109.0",
44
"description": "JavaScript 3D library",
55
"main": "build/three.js",
66
"module": "build/three.module.js",

src/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export var REVISION = '109dev';
1+
export var REVISION = '109';
22
export var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
33
export var TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
44
export var CullFaceNone = 0;

0 commit comments

Comments
 (0)