diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a2afdd..b403e37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ frontend TypeScript client, `django-ai-assistant-client`. The backend and the frontend are versioned together, that is, they have the same version number. When you update the backend, you should also update the frontend to the same version. +## 0.0.4 July 5, 2024 {id="0.0.4"} + +- Fix frontend README. + ## 0.0.3 July 5, 2024 {id="0.0.3"} - Less restrictive Python version in pyproject.toml. Support future Python versions. diff --git a/frontend/openapi_schema.json b/frontend/openapi_schema.json index 3280c93..1af3897 100644 --- a/frontend/openapi_schema.json +++ b/frontend/openapi_schema.json @@ -2,7 +2,7 @@ "openapi": "3.1.0", "info": { "title": "django_ai_assistant", - "version": "0.0.3", + "version": "0.0.4", "description": "" }, "paths": { diff --git a/frontend/package.json b/frontend/package.json index 3c5760f..0ac2975 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -20,7 +20,7 @@ "engines": { "node": ">=20 <21" }, - "version": "0.0.3", + "version": "0.0.4", "description": "TypeScript client to facilitate the integration with the Django AI Assistant backend.", "homepage": "https://github.com/vintasoftware/django-ai-assistant", "documentation": "https://vintasoftware.github.io/django-ai-assistant", diff --git a/frontend/src/client/core/OpenAPI.ts b/frontend/src/client/core/OpenAPI.ts index d1704eb..45d5276 100644 --- a/frontend/src/client/core/OpenAPI.ts +++ b/frontend/src/client/core/OpenAPI.ts @@ -48,7 +48,7 @@ export const OpenAPI: OpenAPIConfig = { PASSWORD: undefined, TOKEN: undefined, USERNAME: undefined, - VERSION: '0.0.3', + VERSION: '0.0.4', WITH_CREDENTIALS: false, interceptors: { request: new Interceptors(), diff --git a/pyproject.toml b/pyproject.toml index 41a36d8..47cbaba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-ai-assistant" -version = "0.0.3" +version = "0.0.4" description = "Django app to integrate with OpenAI Assistants API" authors = ["Vinta Software "] license = "MIT"