Skip to content

Commit 2d3fb47

Browse files
authored
Merge pull request #1523 from jrobertboos/release/0.5
LCORE-1780: semver
2 parents e3e1bf3 + ff36994 commit 2d3fb47

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/lightspeed-core/lightspeed-stack/blob/main/LICENSE)
77
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
88
[![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/)
9-
[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.5.0)
9+
[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.5.1)
1010

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

docs/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"name": "Apache 2.0",
1414
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
1515
},
16-
"version": "0.5.0"
16+
"version": "0.5.1"
1717
},
1818
"servers": [
1919
{

docs/splunk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Events follow the rlsapi telemetry format for consistency with existing analytic
8585
"system_id": "abc-def-123",
8686
"total_llm_tokens": 0,
8787
"request_id": "req_xyz789",
88-
"cla_version": "CLA/0.5.0",
88+
"cla_version": "CLA/0.5.1",
8989
"system_os": "RHEL",
9090
"system_version": "9.3",
9191
"system_arch": "x86_64"

src/observability/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ event_data = InferenceEventData(
3030
org_id="12345678",
3131
system_id="abc-def-123",
3232
request_id="req_xyz789",
33-
cla_version="CLA/0.5.0",
33+
cla_version="CLA/0.5.1",
3434
system_os="RHEL",
3535
system_version="9.3",
3636
system_arch="x86_64",

src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# [tool.pdm.version]
1010
# source = "file"
1111
# path = "src/version.py"
12-
__version__ = "0.5.0"
12+
__version__ = "0.5.1"

tests/e2e/features/info.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Feature: Info tests
1515
Given The system is in default state
1616
When I access REST API endpoint "info" using HTTP GET method
1717
Then The status code of the response is 200
18-
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.5.0
18+
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.5.1
1919
And The body of the response has llama-stack version 0.5.2
2020

2121
@skip-in-library-mode

tests/integration/endpoints/test_rlsapi_v1_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def _create_mock_request(mocker: MockerFixture) -> Any:
4444
mock_request = mocker.Mock()
4545
# Use spec=[] to create a Mock with no attributes, simulating absent rh_identity_data
4646
mock_request.state = mocker.Mock(spec=[])
47-
mock_request.headers = {"User-Agent": "CLA/0.5.0"}
47+
mock_request.headers = {"User-Agent": "CLA/0.5.1"}
4848
return mock_request
4949

5050

tests/unit/app/endpoints/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def mock_request_factory_fixture(mocker: MockerFixture) -> Callable[..., Any]:
1717

1818
def _create(rh_identity: Any = None) -> Any:
1919
mock_request = mocker.Mock()
20-
mock_request.headers = {"User-Agent": "CLA/0.5.0"}
20+
mock_request.headers = {"User-Agent": "CLA/0.5.1"}
2121

2222
if rh_identity is not None:
2323
mock_request.state = mocker.Mock()

tests/unit/observability/formats/test_rlsapi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def sample_event_data_fixture() -> InferenceEventData:
1717
org_id="12345678",
1818
system_id="abc-def-123",
1919
request_id="req_xyz789",
20-
cla_version="CLA/0.5.0",
20+
cla_version="CLA/0.5.1",
2121
system_os="RHEL",
2222
system_version="9.3",
2323
system_arch="x86_64",
@@ -40,7 +40,7 @@ def test_builds_event_with_all_fields(
4040
assert event["org_id"] == "12345678"
4141
assert event["system_id"] == "abc-def-123"
4242
assert event["request_id"] == "req_xyz789"
43-
assert event["cla_version"] == "CLA/0.5.0"
43+
assert event["cla_version"] == "CLA/0.5.1"
4444
assert event["system_os"] == "RHEL"
4545
assert event["system_version"] == "9.3"
4646
assert event["system_arch"] == "x86_64"

0 commit comments

Comments
 (0)