diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cb8593..af088ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ +## [9.0.53](https://github.com/ax-llm/ax/compare/9.0.51...9.0.52) (2024-10-07) + + +### Bug Fixes + +* test issue ([91b15c1](https://github.com/ax-llm/ax/commit/91b15c1cfd808b3d071db960dd58b8014fe09260)) + +## [9.0.52](https://github.com/ax-llm/ax/compare/9.0.51...9.0.52) (2024-10-07) + + +### Features + +* added datetime field support ([bd05b0e](https://github.com/ax-llm/ax/commit/bd05b0ef940abc3f279667d87330f368a37cd8d0)) + ## [9.0.52](https://github.com/ax-llm/ax/compare/9.0.50...9.0.51) (2024-10-07) diff --git a/package-lock.json b/package-lock.json index 4bba66a..1c010dc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ax-llm/ax-monorepo", - "version": "9.0.52", + "version": "9.0.53", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ax-llm/ax-monorepo", - "version": "9.0.52", + "version": "9.0.53", "license": "Apache-2.0", "workspaces": [ "src/*" @@ -26396,11 +26396,11 @@ }, "src/ai-sdk-provider": { "name": "@ax-llm/ax-ai-sdk-provider", - "version": "9.0.50", + "version": "9.0.51", "license": "Apache-2.0", "dependencies": { "@ai-sdk/provider-utils": "^1.0.2", - "@ax-llm/ax": "9.0.52", + "@ax-llm/ax": "9.0.53", "ai": "^3.2.37", "zod": "^3.23.8" }, @@ -26412,7 +26412,7 @@ }, "src/ax": { "name": "@ax-llm/ax", - "version": "9.0.52", + "version": "9.0.53", "license": "Apache-2.0", "dependencies": { "json5": "^2.2.3", @@ -26444,7 +26444,7 @@ "name": "@ax-llm/ax-examples", "license": "Apache-2.0", "dependencies": { - "@ax-llm/ax": "9.0.52" + "@ax-llm/ax": "9.0.53" }, "devDependencies": { "npm-run-all": "^4.1.5", diff --git a/package.json b/package.json index 4ca81d6..2a11f15 100644 --- a/package.json +++ b/package.json @@ -84,5 +84,5 @@ ], "author": "Vikram ", "private": "true", - "version": "9.0.52" + "version": "9.0.53" } diff --git a/src/ai-sdk-provider/package.json b/src/ai-sdk-provider/package.json index 5343c83..fe75ddc 100644 --- a/src/ai-sdk-provider/package.json +++ b/src/ai-sdk-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ax-llm/ax-ai-sdk-provider", - "version": "9.0.50", + "version": "9.0.51", "type": "module", "description": "Ax AI SDK Provider for the Vercel AI SDK", "repository": { @@ -24,7 +24,7 @@ }, "dependencies": { "@ai-sdk/provider-utils": "^1.0.2", - "@ax-llm/ax": "9.0.52", + "@ax-llm/ax": "9.0.53", "ai": "^3.2.37", "zod": "^3.23.8" }, diff --git a/src/ax/package.json b/src/ax/package.json index 3430755..a759353 100644 --- a/src/ax/package.json +++ b/src/ax/package.json @@ -1,6 +1,6 @@ { "name": "@ax-llm/ax", - "version": "9.0.52", + "version": "9.0.53", "type": "module", "description": "The best library to work with LLMs", "repository": { diff --git a/src/examples/package.json b/src/examples/package.json index 827a589..3a9a07e 100644 --- a/src/examples/package.json +++ b/src/examples/package.json @@ -13,7 +13,7 @@ "tsx": "node --env-file=.env --import=tsx" }, "dependencies": { - "@ax-llm/ax": "9.0.52" + "@ax-llm/ax": "9.0.53" }, "devDependencies": { "npm-run-all": "^4.1.5",