@blaxel/core 0.2.32-preview.76 → 0.2.32

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.
@@ -8,7 +8,7 @@ function getPackageVersion() {
8
8
  try {
9
9
  // Try to require package.json (Node.js only, gracefully fails in browser)
10
10
  // eslint-disable-next-line @typescript-eslint/no-require-imports
11
- const packageJson = {"version":"0.2.32-preview.76","commit":"a4a422d1d35b5e4e936355cee64ec9400bd204a7"};
11
+ const packageJson = {"version":"0.2.32","commit":"a4a422d1d35b5e4e936355cee64ec9400bd204a7"};
12
12
  return packageJson.version || "unknown";
13
13
  }
14
14
  catch {
@@ -55,7 +55,7 @@ function getCommitHash() {
55
55
  try {
56
56
  // Try to require package.json and look for commit field (set during build)
57
57
  // eslint-disable-next-line @typescript-eslint/no-require-imports
58
- const packageJson = {"version":"0.2.32-preview.76","commit":"a4a422d1d35b5e4e936355cee64ec9400bd204a7"};
58
+ const packageJson = {"version":"0.2.32","commit":"a4a422d1d35b5e4e936355cee64ec9400bd204a7"};
59
59
  // Check for commit in various possible locations
60
60
  const commit = packageJson.commit || packageJson.buildInfo?.commit;
61
61
  if (commit) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blaxel/core",
3
- "version": "0.2.32-preview.76",
3
+ "version": "0.2.32",
4
4
  "description": "Blaxel Core SDK for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "Blaxel, INC (https://blaxel.ai)",