Skip to content

Commit b5bdafa

Browse files
committed
LCORE-2229: Bump-up service version to 0.6.0rc1
1 parent 679cc54 commit b5bdafa

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

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.6.0rc1"
1717
},
1818
"servers": [
1919
{

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.6.0rc1",
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.6.0rc1"

tests/e2e/features/info.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Feature: Info tests
1818
Scenario: Check if info endpoint is working
1919
When I access REST API endpoint "info" using HTTP GET method
2020
Then The status code of the response is 200
21-
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.5.0
21+
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.6.0rc1
2222
And The body of the response has llama-stack version 0.6.0
2323

2424
Scenario: Check if shields endpoint is working
@@ -77,4 +77,4 @@ Feature: Info tests
7777
Scenario: Check if metrics endpoint is working
7878
When I access endpoint "metrics" using HTTP GET method
7979
Then The status code of the response is 200
80-
And The body of the response contains ls_provider_model_configuration
80+
And The body of the response contains ls_provider_model_configuration

tests/integration/endpoints/test_rlsapi_v1_integration.py

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

5151

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.6.0rc1"}
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.6.0rc1",
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.6.0rc1"
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)