Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.1)
[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.1.2)

Lightspeed Core Stack (LCS) is an AI-powered assistant that provides answers to product questions using backend LLM services, agents, and RAG databases.

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ It is possible to run Lightspeed Core Stack service with Llama Stack "embedded"
+ greenlet==3.2.3
+ grpcio==1.74.0
+ httpx-sse==0.4.1
~ lightspeed-stack==0.1.1 (from file:///tmp/ramdisk/lightspeed-stack)
~ lightspeed-stack==0.1.2 (from file:///tmp/ramdisk/lightspeed-stack)
+ litellm==1.74.9.post1
+ lxml==6.0.0
+ mcp==1.12.2
Expand Down
4 changes: 2 additions & 2 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "0.1.1"
"version": "0.1.2"
},
"paths": {
"/": {
Expand Down Expand Up @@ -1768,4 +1768,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
# [tool.pdm.version]
# source = "file"
# path = "src/version.py"
__version__ = "0.1.1"
__version__ = "0.1.2"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Version bump looks good – please confirm no stale “0.1.1” strings remain

👍 __version__ now reads 0.1.2. To avoid subtle drift (e.g., README badges, Helm charts, CI manifests), run a quick search and fix any leftovers.


🏁 Script executed:

#!/usr/bin/env bash
# Find hard-coded occurrences of the old version.
rg --colors=never -n '"0\.1\.1"' || true

Length of output: 143


The rg invocation is using an invalid --colors=never flag. Let’s re-run the search with the correct --color=never option (and fall back to grep if needed):


🏁 Script executed:

#!/usr/bin/env bash
# Corrected search for hard-coded occurrences of the old version "0.1.1"

echo "Searching with ripgrep..."
rg --color=never -n '0\.1\.1' || true

echo "Fallback search with grep..."
grep -R "0.1.1" -n . || true

Length of output: 65963


Update remaining hard-coded “0.1.1” references to “0.1.2”

We found two leftover occurrences of the prior release tag that need bumping:

• README.md (line 9): update badge link
• docs/getting_started.md (line 666): update example dependency spec

Suggested diffs:

--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
 [![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.1.1)

https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.1.1


--- a/docs/getting_started.md
+++ b/docs/getting_started.md
@@ -663,7 +663,7 @@
To install the local build:

```shell
-~ lightspeed-stack==0.1.1 (from file:///tmp/ramdisk/lightspeed-stack)
+~ lightspeed-stack==0.1.2 (from file:///tmp/ramdisk/lightspeed-stack)

After applying these, rerun `rg -n '0\.1\.1'` to confirm no stale references remain.

<details>
<summary>🤖 Prompt for AI Agents</summary>

In src/version.py at line 12, the version string is correctly updated to
"0.1.2". Now update the remaining hard-coded "0.1.1" references in README.md at
line 9 by changing the release tag URL to "0.1.2" and in docs/getting_started.md
at line 666 by updating the example dependency specification from
"lightspeed-stack==0.1.1" to "lightspeed-stack==0.1.2". After these changes, run
a search for "0.1.1" to ensure no stale references remain.


</details>

<!-- fingerprinting:phantom:triton:cougar -->

<!-- This is an auto-generated comment by CodeRabbit -->

Loading