@vgpu/core 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @vgpu/core
2
2
 
3
- > 0.0.7 — early preview
3
+ > 0.0.8 — early preview
4
4
 
5
- `@vgpu/core` is the runtime foundation for vgpu. It gives you a small wrapper layer around WebGPU devices, queues, buffers, textures, and shader modules, plus an `App.create()` entry point that asks an adapter for a device and returns a compact app instance. In 0.0.7 the goal is portability and a minimal public surface, not a fully opinionated engine.
5
+ `@vgpu/core` is the runtime foundation for vgpu. It gives you a small wrapper layer around WebGPU devices, queues, buffers, textures, and shader modules, plus an `App.create()` entry point that asks an adapter for a device and returns a compact app instance. In 0.0.8 the goal is portability and a minimal public surface, not a fully opinionated engine.
6
6
 
7
7
  ## Install
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgpu/core",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Core WebGPU runtime primitives (device, buffer, texture, shader, queue) for vgpu.",
5
5
  "keywords": [
6
6
  "webgpu",
@@ -42,7 +42,7 @@
42
42
  ],
43
43
  "vgpuBundleBudgetGzipBytes": 51200,
44
44
  "dependencies": {
45
- "@vgpu/wgsl": "0.0.7"
45
+ "@vgpu/wgsl": "0.0.8"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsc -b"