diff --git a/CHANGELOG.md b/CHANGELOG.md index 34194fe3c8..862c10fcb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,21 @@ # luma.gl CHANGELOG -## v9.0.0-alpha.28 +## v9.0.0-alpha.30 + +- fixe(core) boolean uniform fix (#1789) +- docs: consolidation (#1787) +- feat(webgl): Enforce WebGPU style topology (#1781) +- chore(core): Rename api to core (#1783) +- docs: website examples (#1782) +## v9.0.0-alpha.29 - feat(webgl): Implement ShaderLayout.bufferMap in webgl (#1780) - feat(engine): model cleanup (#1779) +## v9.0.0-alpha.28 + +N/A Failed publish. + ## v9.0.0-alpha.27 - fix(engine) Workaround for deck.gl attribute access (#1778) diff --git a/dev-modules/babel-plugin-inline-webgl-constants/package.json b/dev-modules/babel-plugin-inline-webgl-constants/package.json index 8b62c9c64d..a964b6fda8 100644 --- a/dev-modules/babel-plugin-inline-webgl-constants/package.json +++ b/dev-modules/babel-plugin-inline-webgl-constants/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-inline-webgl-constants", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "description": "Babel plugin for replacing long gl constants with the shorter corresponding numbers", "type": "module", @@ -25,7 +25,7 @@ "require": "./dist/index.cjs" }, "dependencies": { - "@luma.gl/constants": "9.0.0-alpha.29" + "@luma.gl/constants": "9.0.0-alpha.30" }, "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" } diff --git a/dev-modules/babel-plugin-remove-glsl-comments/package.json b/dev-modules/babel-plugin-remove-glsl-comments/package.json index 4e59bfdf8d..d2ac43a6c8 100644 --- a/dev-modules/babel-plugin-remove-glsl-comments/package.json +++ b/dev-modules/babel-plugin-remove-glsl-comments/package.json @@ -1,7 +1,7 @@ { "name": "babel-plugin-remove-glsl-comments", "private": true, - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "Babel plugin for removing glsl comments", "license": "MIT", "repository": { diff --git a/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json b/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json index 74fcde8b99..ed6e601f9d 100644 --- a/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json +++ b/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json @@ -1,7 +1,7 @@ { "name": "eslint-plugin-luma-gl-custom-rules", "private": "true", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "main": "index.cjs", "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" } diff --git a/examples/api/animation/package.json b/examples/api/animation/package.json index 72f1336448..274788742d 100644 --- a/examples/api/animation/package.json +++ b/examples/api/animation/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-animation", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/api/cubemap/package.json b/examples/api/cubemap/package.json index c1a2920407..48b4382c45 100644 --- a/examples/api/cubemap/package.json +++ b/examples/api/cubemap/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-cubemap", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,10 +8,10 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.29", - "@luma.gl/constants": "9.0.0-alpha.29", - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", + "@luma.gl/constants": "9.0.0-alpha.30", + "@luma.gl/core": "9.0.0-alpha.30", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/api/texture-3d/package.json b/examples/api/texture-3d/package.json index 0d2d1af48d..568b84d81a 100644 --- a/examples/api/texture-3d/package.json +++ b/examples/api/texture-3d/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-texture-3d", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/getting-started/hello-cube/package.json b/examples/getting-started/hello-cube/package.json index 9380b6d434..2de0981e98 100644 --- a/examples/getting-started/hello-cube/package.json +++ b/examples/getting-started/hello-cube/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-hello-cube", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/getting-started/hello-instancing/package.json b/examples/getting-started/hello-instancing/package.json index 84730173c9..f8664977fa 100644 --- a/examples/getting-started/hello-instancing/package.json +++ b/examples/getting-started/hello-instancing/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-hello-instancing-high", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29" + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30" }, "devDependencies": { "typescript": "^5.1.6", diff --git a/examples/getting-started/hello-triangle/package.json b/examples/getting-started/hello-triangle/package.json index c2ffc162a3..7fb9fb0479 100644 --- a/examples/getting-started/hello-triangle/package.json +++ b/examples/getting-started/hello-triangle/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-hello-triangle", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29" + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30" }, "devDependencies": { "typescript": "^5.1.6", diff --git a/examples/getting-started/lighting/package.json b/examples/getting-started/lighting/package.json index 492da9a2e9..5386285d9a 100644 --- a/examples/getting-started/lighting/package.json +++ b/examples/getting-started/lighting/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-lighting", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/getting-started/shader-hooks/package.json b/examples/getting-started/shader-hooks/package.json index aadf0eaa79..58a82d8d40 100644 --- a/examples/getting-started/shader-hooks/package.json +++ b/examples/getting-started/shader-hooks/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-shader-hooks", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.29", - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29" + "@luma.gl/core": "9.0.0-alpha.30", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30" }, "devDependencies": { "typescript": "^5.1.6", diff --git a/examples/getting-started/shader-modules/package.json b/examples/getting-started/shader-modules/package.json index 51ab58c92d..acf58625fa 100644 --- a/examples/getting-started/shader-modules/package.json +++ b/examples/getting-started/shader-modules/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-shader-modules", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29" + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30" }, "devDependencies": { "typescript": "^5.1.6", diff --git a/examples/showcase/instancing/package.json b/examples/showcase/instancing/package.json index 14642c0bd3..8b1a472246 100644 --- a/examples/showcase/instancing/package.json +++ b/examples/showcase/instancing/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-instancing", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,10 +8,10 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.29", - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", + "@luma.gl/core": "9.0.0-alpha.30", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/showcase/persistence/package.json b/examples/showcase/persistence/package.json index bb3855cea4..8edcc7f7bf 100644 --- a/examples/showcase/persistence/package.json +++ b/examples/showcase/persistence/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-persistence", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.29", - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", + "@luma.gl/core": "9.0.0-alpha.30", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/computeboids/package.json b/examples/webgpu/computeboids/package.json index 98295087ee..be58e32f00 100644 --- a/examples/webgpu/computeboids/package.json +++ b/examples/webgpu/computeboids/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-computeboids", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgpu": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgpu": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/hello-triangle/package.json b/examples/webgpu/hello-triangle/package.json index e507535890..dc8b7a1e4f 100644 --- a/examples/webgpu/hello-triangle/package.json +++ b/examples/webgpu/hello-triangle/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-hello-triangle", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgpu": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgpu": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/instanced-cubes/package.json b/examples/webgpu/instanced-cubes/package.json index 1de71a4ec4..28d9b0f3c8 100644 --- a/examples/webgpu/instanced-cubes/package.json +++ b/examples/webgpu/instanced-cubes/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-instance-uniforms", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgpu": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgpu": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/rotating-cube/package.json b/examples/webgpu/rotating-cube/package.json index fe3d46bb8f..d100e53762 100644 --- a/examples/webgpu/rotating-cube/package.json +++ b/examples/webgpu/rotating-cube/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-rotating-cube", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgpu": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgpu": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/textured-cube/package.json b/examples/webgpu/textured-cube/package.json index 70bb36e523..79caece7c4 100644 --- a/examples/webgpu/textured-cube/package.json +++ b/examples/webgpu/textured-cube/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-textured-cube", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgpu": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgpu": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/two-cubes/package.json b/examples/webgpu/two-cubes/package.json index 7655efc433..60553d0a88 100644 --- a/examples/webgpu/two-cubes/package.json +++ b/examples/webgpu/two-cubes/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-two-cubes", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgpu": "9.0.0-alpha.29", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgpu": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/lerna.json b/lerna.json index 8165401af2..4ed229f6a3 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.0.0", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "npmClient": "yarn", "useWorkspaces": true, "exact": true, diff --git a/modules/api-tests/package.json b/modules/api-tests/package.json index 1580c66155..f4cb1ba10a 100644 --- a/modules/api-tests/package.json +++ b/modules/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/api-tests", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "luma.gl API", "license": "MIT", "type": "module", @@ -37,10 +37,10 @@ "pre-build": "npm run build-bundle && npm run build-bundle -- --env=dev" }, "devDependencies": { - "@luma.gl/core": "9.0.0-alpha.29", - "@luma.gl/test-utils": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", - "@luma.gl/webgpu": "9.0.0-alpha.29" + "@luma.gl/core": "9.0.0-alpha.30", + "@luma.gl/test-utils": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", + "@luma.gl/webgpu": "9.0.0-alpha.30" }, "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" } diff --git a/modules/constants/package.json b/modules/constants/package.json index d3a9ab3114..dd3228a288 100644 --- a/modules/constants/package.json +++ b/modules/constants/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/constants", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "WebGL and WebGL2 constants", "type": "module", "license": "MIT", diff --git a/modules/core/package.json b/modules/core/package.json index 01239572a3..2d02b831c6 100644 --- a/modules/core/package.json +++ b/modules/core/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/core", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "luma.gl API", "license": "MIT", "type": "module", diff --git a/modules/engine/package.json b/modules/engine/package.json index 4e7e1761b0..078b93037f 100644 --- a/modules/engine/package.json +++ b/modules/engine/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/engine", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "WebGL2 Components for High Performance Rendering and Computation", "type": "module", "license": "MIT", @@ -40,10 +40,10 @@ }, "dependencies": { "@babel/runtime": "^7.0.0", - "@luma.gl/core": "9.0.0-alpha.29", - "@luma.gl/constants": "9.0.0-alpha.29", - "@luma.gl/shadertools": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", + "@luma.gl/constants": "9.0.0-alpha.30", + "@luma.gl/core": "9.0.0-alpha.30", + "@luma.gl/shadertools": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4", "@probe.gl/log": "^4.0.2", "@probe.gl/stats": "^4.0.2" diff --git a/modules/shadertools/package.json b/modules/shadertools/package.json index 8b86d63957..a2e384df77 100644 --- a/modules/shadertools/package.json +++ b/modules/shadertools/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/shadertools", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "Shader module system for luma.gl", "type": "module", "license": "MIT", @@ -46,7 +46,7 @@ }, "dependencies": { "@babel/runtime": "^7.0.0", - "@luma.gl/core": "9.0.0-alpha.29", + "@luma.gl/core": "9.0.0-alpha.30", "@math.gl/core": "4.0.0-alpha.4" }, "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" diff --git a/modules/test-utils/package.json b/modules/test-utils/package.json index d0b9fdce28..71f098c2fc 100644 --- a/modules/test-utils/package.json +++ b/modules/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/test-utils", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "Automated WebGL testing utilities with Puppeteer and image diffing", "type": "module", "license": "MIT", @@ -39,10 +39,10 @@ "pre-build": "echo test utils has no bundle" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.29", - "@luma.gl/engine": "9.0.0-alpha.29", - "@luma.gl/webgl": "9.0.0-alpha.29", - "@luma.gl/webgpu": "9.0.0-alpha.29", + "@luma.gl/core": "9.0.0-alpha.30", + "@luma.gl/engine": "9.0.0-alpha.30", + "@luma.gl/webgl": "9.0.0-alpha.30", + "@luma.gl/webgpu": "9.0.0-alpha.30", "@probe.gl/env": "^4.0.2", "@types/gl": "^6.0.2", "gl": "^6.0.1" diff --git a/modules/webgl/package.json b/modules/webgl/package.json index 69e448fc27..725b08b3b7 100644 --- a/modules/webgl/package.json +++ b/modules/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/webgl", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "WebGL2 adapter for the luma.gl API", "type": "module", "license": "MIT", @@ -44,12 +44,12 @@ }, "dependencies": { "@babel/runtime": "^7.0.0", - "@luma.gl/core": "9.0.0-alpha.29", - "@luma.gl/constants": "9.0.0-alpha.29", + "@luma.gl/constants": "9.0.0-alpha.30", + "@luma.gl/core": "9.0.0-alpha.30", "@probe.gl/env": "^4.0.2" }, "devDependencies": { - "@luma.gl/test-utils": "9.0.0-alpha.29" + "@luma.gl/test-utils": "9.0.0-alpha.30" }, "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" } diff --git a/modules/webgpu/package.json b/modules/webgpu/package.json index e613a19677..46ce974c11 100644 --- a/modules/webgpu/package.json +++ b/modules/webgpu/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/webgpu", - "version": "9.0.0-alpha.29", + "version": "9.0.0-alpha.30", "description": "WebGPU adapter for the luma.gl API", "type": "module", "license": "MIT", @@ -37,7 +37,7 @@ }, "dependencies": { "@babel/runtime": "^7.0.0", - "@luma.gl/core": "9.0.0-alpha.29", + "@luma.gl/core": "9.0.0-alpha.30", "@probe.gl/env": "^4.0.2", "@webgpu/types": "^0.1.34" },