Skip to content

Commit

Permalink
v7.2.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tsherif committed Aug 6, 2019
1 parent ebb7d25 commit 9bf007f
Show file tree
Hide file tree
Showing 17 changed files with 54 additions and 37 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v7.2.0-beta.1
- webgl-state-tracker tests (#1187)
- Remove diffImagePixels from gpgpu (#1186)

## v7.2.0-alpha.6

- Transform: fix resource leak (#1188)
Expand Down
13 changes: 13 additions & 0 deletions docs/whats-new.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# What's New

## Version 7.2

Date: July 9, 2019

### FXAA Shader Module

luma.gl now supports FXAA (Fast Approximate Antialiasing) as a post processing effect. This allows for antialiasing on offscreen framebuffers.

### ImageBitmap Textures

The `Texture` class now supports `ImageBitmap` input data.


## Version 7.1

Date: June 4, 2019
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.0.0",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"npmClient": "yarn",
"useWorkspaces": true,
"exact": true,
Expand Down
4 changes: 2 additions & 2 deletions modules/addons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/addons",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"description": "Additional classes for luma.gl",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -31,7 +31,7 @@
},
"dependencies": {
"@loaders.gl/gltf": "^1.0.3",
"@luma.gl/constants": "7.2.0-alpha.6",
"@luma.gl/constants": "7.2.0-beta.1",
"math.gl": "^2.3.0"
},
"peerDependencies": {
Expand Down
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": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"description": "WebGL and WebGL2 constants",
"license": "MIT",
"repository": {
Expand Down
12 changes: 6 additions & 6 deletions modules/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/core",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"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.2.0-alpha.6",
"@luma.gl/shadertools": "7.2.0-alpha.6",
"@luma.gl/webgl": "7.2.0-alpha.6",
"@luma.gl/webgl-state-tracker": "7.2.0-alpha.6",
"@luma.gl/webgl2-polyfill": "7.2.0-alpha.6",
"@luma.gl/constants": "7.2.0-beta.1",
"@luma.gl/shadertools": "7.2.0-beta.1",
"@luma.gl/webgl": "7.2.0-beta.1",
"@luma.gl/webgl-state-tracker": "7.2.0-beta.1",
"@luma.gl/webgl2-polyfill": "7.2.0-beta.1",
"math.gl": "^2.3.0",
"probe.gl": "^3.0.2",
"seer": "^0.2.4"
Expand Down
4 changes: 2 additions & 2 deletions modules/debug/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/debug",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"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.2.0-alpha.6",
"@luma.gl/constants": "7.2.0-beta.1",
"glsl-transpiler": "^1.8.5",
"math.gl": "^2.3.0",
"webgl-debug": "^2.0.1"
Expand Down
4 changes: 2 additions & 2 deletions modules/effects/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@luma.gl/effects",
"description": "Rendering and post-processing effects library for luma.gl",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"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.2.0-alpha.6"
"@luma.gl/constants": "7.2.0-beta.1"
},
"peerDependencies": {
"@luma.gl/core": "^7.1.0"
Expand Down
2 changes: 1 addition & 1 deletion modules/glfx/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@luma.gl/glfx",
"description": "glfx - image processing packaged as composable shader modules",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions modules/gpgpu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/gpgpu",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"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.2.0-alpha.6"
"@luma.gl/constants": "7.2.0-beta.1"
},
"peerDependencies": {
"@luma.gl/core": "^7.1.0"
Expand Down
8 changes: 4 additions & 4 deletions modules/main/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "luma.gl",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"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.2.0-alpha.6",
"@luma.gl/constants": "7.2.0-alpha.6",
"@luma.gl/core": "7.2.0-alpha.6"
"@luma.gl/addons": "7.2.0-beta.1",
"@luma.gl/constants": "7.2.0-beta.1",
"@luma.gl/core": "7.2.0-beta.1"
}
}
12 changes: 6 additions & 6 deletions modules/script/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@luma.gl/scripts",
"description": "Scripting with luma.gl",
"license": "MIT",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"private": "true",
"publishConfig": {
"access": "public"
Expand All @@ -24,11 +24,11 @@
"build": "npm run build-prod"
},
"dependencies": {
"@luma.gl/constants": "7.2.0-alpha.6",
"@luma.gl/core": "7.2.0-alpha.6",
"@luma.gl/debug": "7.2.0-alpha.6",
"@luma.gl/glfx": "7.2.0-alpha.6",
"@luma.gl/shadertools": "7.2.0-alpha.6",
"@luma.gl/constants": "7.2.0-beta.1",
"@luma.gl/core": "7.2.0-beta.1",
"@luma.gl/debug": "7.2.0-beta.1",
"@luma.gl/glfx": "7.2.0-beta.1",
"@luma.gl/shadertools": "7.2.0-beta.1",
"math.gl": "^2.3.0"
}
}
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": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"description": "Shader module system for luma.gl",
"license": "MIT",
"repository": {
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": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgl-state-tracker",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"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.2.0-alpha.6"
"@luma.gl/constants": "7.2.0-beta.1"
}
}
8 changes: 4 additions & 4 deletions modules/webgl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgl",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"description": "WebGL2 Classes",
"license": "MIT",
"publishConfig": {
Expand Down Expand Up @@ -35,9 +35,9 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/constants": "7.2.0-alpha.6",
"@luma.gl/webgl-state-tracker": "7.2.0-alpha.6",
"@luma.gl/webgl2-polyfill": "7.2.0-alpha.6",
"@luma.gl/constants": "7.2.0-beta.1",
"@luma.gl/webgl-state-tracker": "7.2.0-beta.1",
"@luma.gl/webgl2-polyfill": "7.2.0-beta.1",
"probe.gl": "^3.0.2"
}
}
4 changes: 2 additions & 2 deletions modules/webgl2-polyfill/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgl2-polyfill",
"version": "7.2.0-alpha.6",
"version": "7.2.0-beta.1",
"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.2.0-alpha.6"
"@luma.gl/constants": "7.2.0-beta.1"
}
}

0 comments on commit 9bf007f

Please sign in to comment.