@velarscript-labs/sqlite 0.2.0 → 0.2.1

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/CHANGELOG.md +6 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.1 — 2026-08-24
4
+
5
+ - Verify the adapter with VelarScript 0.14, extend the declared compatible
6
+ language range through the 0.14 generation, and pin the matching Database
7
+ compatibility release.
8
+
3
9
  ## 0.2.0 — 2026-08-23
4
10
 
5
11
  - Publish the companion package as `@velarscript-labs/sqlite`, outside the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velarscript-labs/sqlite",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Bounded asynchronous SQLite capability for VelarScript Node applications.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -28,9 +28,9 @@
28
28
  "velar": {
29
29
  "entry": "src/index.vel",
30
30
  "targets": ["node"],
31
- "requires": {"capabilities": ["node"], "language": ">=0.13 <0.14"}
31
+ "requires": {"capabilities": ["node"], "language": ">=0.13 <0.15"}
32
32
  },
33
33
  "dependencies": {
34
- "@velarscript-labs/database": "0.2.0"
34
+ "@velarscript-labs/database": "0.2.1"
35
35
  }
36
36
  }