diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d7a8735..c5e8a3e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.1" + ".": "0.1.0-alpha.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e24f70c..b3d545a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.2 (2025-01-07) + +Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/vlm-run/vlmrun-node-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2) + +### Chores + +* **client:** simplify `unknown | null` to just `unknown` ([#16](https://github.com/vlm-run/vlmrun-node-sdk/issues/16)) ([52aa167](https://github.com/vlm-run/vlmrun-node-sdk/commit/52aa16767d5e3343cf3e34994dc95fc2fe580c76)) + ## 0.1.0-alpha.1 (2025-01-05) Full Changelog: [v0.0.1-alpha.2...v0.1.0-alpha.1](https://github.com/vlm-run/vlmrun-node-sdk/compare/v0.0.1-alpha.2...v0.1.0-alpha.1) diff --git a/package-lock.json b/package-lock.json index 1ed05b7..1aa6a39 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vlmrun", - "version": "0.1.0-alpha.1", + "version": "0.1.0-alpha.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vlmrun", - "version": "0.1.0-alpha.1", + "version": "0.1.0-alpha.2", "license": "Apache-2.0", "dependencies": { "@types/node": "^18.11.18", diff --git a/package.json b/package.json index 79fd1a3..28eb3a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vlmrun", - "version": "0.1.0-alpha.1", + "version": "0.1.0-alpha.2", "description": "The official TypeScript library for the Vlm API", "author": "Vlm ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index b0bfd9e..a528f63 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.1.0-alpha.1'; // x-release-please-version +export const VERSION = '0.1.0-alpha.2'; // x-release-please-version