Skip to content

Commit

Permalink
v9.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
felixpalmer committed Jun 21, 2024
1 parent 6934f50 commit 48b6e70
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

Major new release that includes WebGPU support

### 9.0.15 - Jun 21, 2024

- chore(gltf): Include @loaders.gl/core dependency (#2107)
- feat(engine): ShaderInputs bindings (#2099)

### 9.0.14 - May 10, 2024

- fix(webgl): reset buffer binding in WEBGLVertexArray.setBuffer (#2075)
Expand Down
4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "9.0.14",
"version": "9.0.15",
"npmClient": "yarn",
"exact": true,
"packages": [
Expand All @@ -18,4 +18,4 @@
"publishConfig": {
"access": "public"
}
}
}
2 changes: 1 addition & 1 deletion modules/constants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/constants",
"version": "9.0.14",
"version": "9.0.15",
"description": "WebGL2 constants",
"type": "module",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion modules/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/core",
"version": "9.0.14",
"version": "9.0.15",
"description": "The luma.gl core Device API",
"license": "MIT",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions modules/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/engine",
"version": "9.0.14",
"version": "9.0.15",
"description": "3D Engine Components for luma.gl",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -43,7 +43,7 @@
"@luma.gl/core": "^9.0.0"
},
"dependencies": {
"@luma.gl/shadertools": "9.0.14",
"@luma.gl/shadertools": "9.0.15",
"@math.gl/core": "^4.0.0",
"@probe.gl/log": "^4.0.2",
"@probe.gl/stats": "^4.0.2"
Expand Down
8 changes: 4 additions & 4 deletions modules/gltf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/gltf",
"version": "9.0.14",
"version": "9.0.15",
"description": "glTF support for luma.gl",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -40,13 +40,13 @@
"prepublishOnly": "npm run build-minified-bundle && npm run build-dev-bundle"
},
"peerDependencies": {
"@loaders.gl/core": "^4.2.0",
"@luma.gl/core": "^9.0.0",
"@luma.gl/engine": "^9.0.0",
"@loaders.gl/core": "^4.2.0"
"@luma.gl/engine": "^9.0.0"
},
"dependencies": {
"@loaders.gl/textures": "^4.2.0",
"@luma.gl/shadertools": "9.0.14",
"@luma.gl/shadertools": "9.0.15",
"@math.gl/core": "^4.0.0"
},
"gitHead": "e6ff30f654d907e93a0754e82b2e430ea98db033"
Expand Down
2 changes: 1 addition & 1 deletion modules/shadertools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/shadertools",
"version": "9.0.14",
"version": "9.0.15",
"description": "Shader module system for luma.gl",
"type": "module",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion modules/test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/test-utils",
"version": "9.0.14",
"version": "9.0.15",
"description": "Automated WebGL testing utilities with Puppeteer and image diffing",
"type": "module",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions modules/webgl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgl",
"version": "9.0.14",
"version": "9.0.15",
"description": "WebGL2 adapter for the luma.gl core API",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -43,7 +43,7 @@
"@luma.gl/core": "^9.0.0"
},
"dependencies": {
"@luma.gl/constants": "9.0.14",
"@luma.gl/constants": "9.0.15",
"@probe.gl/env": "^4.0.2"
},
"gitHead": "e6ff30f654d907e93a0754e82b2e430ea98db033"
Expand Down
2 changes: 1 addition & 1 deletion modules/webgpu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgpu",
"version": "9.0.14",
"version": "9.0.15",
"description": "WebGPU adapter for the luma.gl core API",
"type": "module",
"license": "MIT",
Expand Down

0 comments on commit 48b6e70

Please sign in to comment.