@plasius/gpu-worker 0.1.2 → 0.1.3

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.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,20 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ - **Added**
12
+ - (placeholder)
13
+
14
+ - **Changed**
15
+ - (placeholder)
16
+
17
+ - **Fixed**
18
+ - (placeholder)
19
+
20
+ - **Security**
21
+ - (placeholder)
22
+
23
+ ## [0.1.3] - 2026-02-28
24
+
11
25
  - **Added**
12
26
  - (placeholder)
13
27
 
@@ -114,7 +128,22 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
114
128
 
115
129
  ---
116
130
 
117
- [Unreleased]: https://github.com/Plasius-LTD/gpu-worker/compare/v0.1.2...HEAD
131
+ [Unreleased]: https://github.com/Plasius-LTD/gpu-worker/compare/v0.1.3...HEAD
118
132
  [0.1.0-beta.1]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.0-beta.1
119
133
  [0.1.0]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.0
120
134
  [0.1.2]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.2
135
+
136
+ ## [0.1.2] - 2026-02-11
137
+
138
+ - **Added**
139
+ - Initial release.
140
+
141
+ - **Changed**
142
+ - (placeholder)
143
+
144
+ - **Fixed**
145
+ - (placeholder)
146
+
147
+ - **Security**
148
+ - (placeholder)
149
+ [0.1.3]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.3
package/README.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # @plasius/gpu-worker
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@plasius/gpu-worker)](https://www.npmjs.com/package/@plasius/gpu-worker)
3
+ [![npm version](https://img.shields.io/npm/v/@plasius/gpu-worker.svg)](https://www.npmjs.com/package/@plasius/gpu-worker)
4
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/Plasius-LTD/gpu-worker/ci.yml?branch=main&label=build&style=flat)](https://github.com/Plasius-LTD/gpu-worker/actions/workflows/ci.yml)
5
+ [![coverage](https://img.shields.io/codecov/c/github/Plasius-LTD/gpu-worker)](https://codecov.io/gh/Plasius-LTD/gpu-worker)
6
+ [![License](https://img.shields.io/github/license/Plasius-LTD/gpu-worker)](./LICENSE)
7
+ [![Code of Conduct](https://img.shields.io/badge/code%20of%20conduct-yes-blue.svg)](./CODE_OF_CONDUCT.md)
8
+ [![Security Policy](https://img.shields.io/badge/security%20policy-yes-orange.svg)](./SECURITY.md)
9
+ [![Changelog](https://img.shields.io/badge/changelog-md-blue.svg)](./CHANGELOG.md)
10
+
4
11
  [![CI](https://github.com/Plasius-LTD/gpu-worker/actions/workflows/ci.yml/badge.svg)](https://github.com/Plasius-LTD/gpu-worker/actions/workflows/ci.yml)
5
12
  [![license](https://img.shields.io/github/license/Plasius-LTD/gpu-worker)](./LICENSE)
6
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasius/gpu-worker",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "WebGPU worker runtime with a lock-free job queue for WGSL workloads.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -30,7 +30,9 @@
30
30
  "test": "npm run test:unit",
31
31
  "test:unit": "node --test",
32
32
  "test:e2e": "npx playwright install chromium && playwright test",
33
- "test:coverage": "c8 --reporter=lcov --reporter=text node --test"
33
+ "test:coverage": "c8 --reporter=lcov --reporter=text node --test",
34
+ "pack:check": "node scripts/verify-public-package.cjs",
35
+ "prepublishOnly": "npm run build && npm run pack:check"
34
36
  },
35
37
  "keywords": [
36
38
  "webgpu",
@@ -47,7 +49,7 @@
47
49
  "author": "Plasius LTD <development@plasius.co.uk>",
48
50
  "license": "Apache-2.0",
49
51
  "dependencies": {
50
- "@plasius/gpu-lock-free-queue": "^0.2.1"
52
+ "@plasius/gpu-lock-free-queue": "^0.2.2"
51
53
  },
52
54
  "devDependencies": {
53
55
  "@playwright/test": "^1.57.0",
@@ -75,5 +77,8 @@
75
77
  "type": "github",
76
78
  "url": "https://github.com/sponsors/Plasius-LTD"
77
79
  }
78
- ]
80
+ ],
81
+ "overrides": {
82
+ "minimatch": "^10.2.1"
83
+ }
79
84
  }