Skip to content

Commit

Permalink
v7.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
1chandu committed Oct 15, 2019
1 parent 69a6a22 commit f425977
Show file tree
Hide file tree
Showing 16 changed files with 40 additions and 37 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
## v7.3.2
- Transform Fix: elementCount update, feedback buffer creation (#1281)

## v7.3.1
- DevicePixelRatio: Cache canvas size to avoid expensive setting on each frame (#1269)

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"lerna": "2.0.0",
"version": "7.3.1",
"version": "7.3.2",
"npmClient": "yarn",
"useWorkspaces": true,
"exact": true,
Expand Down
4 changes: 2 additions & 2 deletions modules/addons/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/addons",
"version": "7.3.1",
"version": "7.3.2",
"description": "Additional classes for luma.gl",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"dependencies": {
"@loaders.gl/gltf": "^1.3.0",
"@loaders.gl/images": "^1.3.0",
"@luma.gl/constants": "7.3.1",
"@luma.gl/constants": "7.3.2",
"math.gl": "^3.0.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion modules/constants/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/constants",
"version": "7.3.1",
"version": "7.3.2",
"description": "WebGL and WebGL2 constants",
"license": "MIT",
"repository": {
Expand Down
12 changes: 6 additions & 6 deletions modules/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/core",
"version": "7.3.1",
"version": "7.3.2",
"description": "WebGL2 Components for High Performance Rendering and Computation",
"license": "MIT",
"publishConfig": {
Expand Down Expand Up @@ -31,11 +31,11 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/constants": "7.3.1",
"@luma.gl/shadertools": "7.3.1",
"@luma.gl/webgl": "7.3.1",
"@luma.gl/webgl-state-tracker": "7.3.1",
"@luma.gl/webgl2-polyfill": "7.3.1",
"@luma.gl/constants": "7.3.2",
"@luma.gl/shadertools": "7.3.2",
"@luma.gl/webgl": "7.3.2",
"@luma.gl/webgl-state-tracker": "7.3.2",
"@luma.gl/webgl2-polyfill": "7.3.2",
"math.gl": "^3.0.0",
"probe.gl": "^3.1.1",
"seer": "^0.2.4"
Expand Down
4 changes: 2 additions & 2 deletions modules/debug/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/debug",
"version": "7.3.1",
"version": "7.3.2",
"description": "Debug utilities for luma.gl",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"build-bundle": "webpack --display=minimal --config ../../scripts/bundle.config.js"
},
"dependencies": {
"@luma.gl/constants": "7.3.1",
"@luma.gl/constants": "7.3.2",
"glsl-transpiler": "^1.8.5",
"math.gl": "^3.0.0",
"webgl-debug": "^2.0.1"
Expand Down
4 changes: 2 additions & 2 deletions modules/effects/package.json
@@ -1,7 +1,7 @@
{
"name": "@luma.gl/effects",
"description": "Rendering and post-processing effects library for luma.gl",
"version": "7.3.1",
"version": "7.3.2",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -24,7 +24,7 @@
"build-bundle": "webpack --display=minimal --config ../../scripts/bundle.config.js"
},
"dependencies": {
"@luma.gl/constants": "7.3.1"
"@luma.gl/constants": "7.3.2"
},
"peerDependencies": {
"@luma.gl/core": "^7.1.0"
Expand Down
2 changes: 1 addition & 1 deletion modules/glfx/package.json
@@ -1,7 +1,7 @@
{
"name": "@luma.gl/glfx",
"description": "glfx - image processing packaged as composable shader modules",
"version": "7.3.1",
"version": "7.3.2",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions modules/gpgpu/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/gpgpu",
"version": "7.3.1",
"version": "7.3.2",
"description": "Set of gpgpu utility methods based on luma.gl",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"build-bundle": "webpack --display=minimal --config ../../scripts/bundle.config.js"
},
"dependencies": {
"@luma.gl/constants": "7.3.1"
"@luma.gl/constants": "7.3.2"
},
"peerDependencies": {
"@luma.gl/core": "^7.1.0"
Expand Down
8 changes: 4 additions & 4 deletions modules/main/package.json
@@ -1,6 +1,6 @@
{
"name": "luma.gl",
"version": "7.3.1",
"version": "7.3.2",
"description": "WebGL2 Components for High Performance Rendering and Computation",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -28,8 +28,8 @@
],
"scripts": {},
"dependencies": {
"@luma.gl/addons": "7.3.1",
"@luma.gl/constants": "7.3.1",
"@luma.gl/core": "7.3.1"
"@luma.gl/addons": "7.3.2",
"@luma.gl/constants": "7.3.2",
"@luma.gl/core": "7.3.2"
}
}
12 changes: 6 additions & 6 deletions modules/script/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@luma.gl/scripts",
"description": "Scripting with luma.gl",
"license": "MIT",
"version": "7.3.1",
"version": "7.3.2",
"private": "true",
"publishConfig": {
"access": "public"
Expand All @@ -24,11 +24,11 @@
"build": "npm run build-prod"
},
"dependencies": {
"@luma.gl/constants": "7.3.1",
"@luma.gl/core": "7.3.1",
"@luma.gl/debug": "7.3.1",
"@luma.gl/glfx": "7.3.1",
"@luma.gl/shadertools": "7.3.1",
"@luma.gl/constants": "7.3.2",
"@luma.gl/core": "7.3.2",
"@luma.gl/debug": "7.3.2",
"@luma.gl/glfx": "7.3.2",
"@luma.gl/shadertools": "7.3.2",
"math.gl": "^3.0.0"
}
}
2 changes: 1 addition & 1 deletion modules/shadertools/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/shadertools",
"version": "7.3.1",
"version": "7.3.2",
"description": "Shader module system for luma.gl",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion modules/test-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/test-utils",
"version": "7.3.1",
"version": "7.3.2",
"description": "Automated WebGL testing utilities with Puppeteer and image diffing",
"license": "MIT",
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions modules/webgl-state-tracker/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgl-state-tracker",
"version": "7.3.1",
"version": "7.3.2",
"description": "WebGL state manager that saves and restores WebGLRenderingContext state",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -28,6 +28,6 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/constants": "7.3.1"
"@luma.gl/constants": "7.3.2"
}
}
8 changes: 4 additions & 4 deletions modules/webgl/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgl",
"version": "7.3.1",
"version": "7.3.2",
"description": "WebGL2 Classes",
"license": "MIT",
"publishConfig": {
Expand Down Expand Up @@ -35,9 +35,9 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/constants": "7.3.1",
"@luma.gl/webgl-state-tracker": "7.3.1",
"@luma.gl/webgl2-polyfill": "7.3.1",
"@luma.gl/constants": "7.3.2",
"@luma.gl/webgl-state-tracker": "7.3.2",
"@luma.gl/webgl2-polyfill": "7.3.2",
"probe.gl": "^3.1.1"
}
}
4 changes: 2 additions & 2 deletions modules/webgl2-polyfill/package.json
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgl2-polyfill",
"version": "7.3.1",
"version": "7.3.2",
"description": "WebGL2 API Polyfills for WebGL1 WebGLRenderingContext",
"license": "MIT",
"repository": {
Expand All @@ -26,6 +26,6 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/constants": "7.3.1"
"@luma.gl/constants": "7.3.2"
}
}

0 comments on commit f425977

Please sign in to comment.