diff --git a/README.md b/README.md index edfaaeb5..dd3094b7 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/lightspeed-core/lightspeed-stack/blob/main/LICENSE) [![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/) [![Required Python version](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Flightspeed-core%2Flightspeed-stack%2Frefs%2Fheads%2Fmain%2Fpyproject.toml)](https://www.python.org/) -[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.2.0) +[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.3.0) Lightspeed Core Stack (LCS) is an AI-powered assistant that provides answers to product questions using backend LLM services, agents, and RAG databases. diff --git a/docs/openapi.json b/docs/openapi.json index 3fef744c..743e1039 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -13,7 +13,7 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "version": "0.2.0" + "version": "0.3.0" }, "servers": [ { @@ -3807,4 +3807,4 @@ } } } -} \ No newline at end of file +} diff --git a/src/version.py b/src/version.py index df6772d7..3ac582a6 100644 --- a/src/version.py +++ b/src/version.py @@ -9,4 +9,4 @@ # [tool.pdm.version] # source = "file" # path = "src/version.py" -__version__ = "0.2.0" +__version__ = "0.3.0" diff --git a/tests/e2e/features/info.feature b/tests/e2e/features/info.feature index 3fb9d4f1..2c211a6d 100644 --- a/tests/e2e/features/info.feature +++ b/tests/e2e/features/info.feature @@ -17,7 +17,7 @@ Feature: Info tests Given The system is in default state When I access REST API endpoint "info" using HTTP GET method Then The status code of the response is 200 - And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.2.0 + And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.3.0 And The body of the response has llama-stack version 0.2.22 Scenario: Check if info endpoint reports error when llama-stack connection is not working