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.2)
[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.1.3)
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

Link now targets 0.1.3 — verify no other stale badges

The badge points to the new tag and looks fine. To be safe, scan the repo for any remaining 0.1.2 literals.


🏁 Script executed:

#!/bin/bash
# Find any forgotten hard-coded references to the old version.
rg -n '"?0\.1\.2"?' || true

Length of output: 1678


Replace leftover 0.1.2 references in docs/getting_started.md

Scan results uncovered hard-coded mentions of the old version in your getting-started guide. Please update these to 0.1.3:

  • docs/getting_started.md: line 690
    ~ lightspeed-stack==0.1.2
  • docs/getting_started.md: line 1025
    To retrieve stable version 0.1.2, use the following command:
  • docs/getting_started.md: line 1028
    podman pull quay.io/lightspeed-core/lightspeed-stack:0.1.2
  • docs/getting_started.md: line 1032
    Trying to pull quay.io/lightspeed-core/lightspeed-stack:0.1.2...

The uv.lock entries pinning dependencies at “0.1.2” are autogenerated—no manual edits needed (you can regenerate the lock file if you want those updated).

🤖 Prompt for AI Agents
In docs/getting_started.md at lines 690, 1025, 1028, and 1032, update all
hard-coded references of version "0.1.2" to "0.1.3" to ensure the documentation
reflects the current stable version. No changes are needed for uv.lock as it is
autogenerated.


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
10 changes: 5 additions & 5 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,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.2 (from file:///tmp/ramdisk/lightspeed-stack)
~ lightspeed-stack==0.1.3 (from file:///tmp/ramdisk/lightspeed-stack)
+ litellm==1.74.9.post1
+ lxml==6.0.0
+ mcp==1.12.2
Expand Down Expand Up @@ -1022,14 +1022,14 @@ Writing manifest to image destination
4468f475931a54ad1e5c26270ff4c3e55ec31444c1b0bf8fb77a576db7ab33f1
```

To retrieve stable version `0.1.2`, use the following command:
To retrieve stable version `0.1.3`, use the following command:

```bash
podman pull quay.io/lightspeed-core/lightspeed-stack:0.1.2
podman pull quay.io/lightspeed-core/lightspeed-stack:0.1.3
```

```text
Trying to pull quay.io/lightspeed-core/lightspeed-stack:0.1.2...
Trying to pull quay.io/lightspeed-core/lightspeed-stack:0.1.3...
Getting image source signatures
Copying blob 7c9e86f872c9 done |
Copying blob 455d71b0a12b skipped: already exists
Expand Down Expand Up @@ -1745,7 +1745,7 @@ The response should look like:
```json
{
"name": "Lightspeed Core Service (LCS)",
"version": "0.1.2"
"version": "0.1.3"
}
```

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.2"
"version": "0.1.3"
},
"paths": {
"/": {
Expand Down Expand Up @@ -1792,4 +1792,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.2"
__version__ = "0.1.3"
Loading