Skip to content

Commit c083ad5

Browse files
authored
Merge pull request #623 from runloopai/release-please--branches--main--changes--next
release: 0.53.0
2 parents f80e050 + 8cc8c7a commit c083ad5

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.52.0"
2+
".": "0.53.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 92
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-2417f3ff96b2f0934e6ee5cafd072e111515712cebb58eff3690bda46b9e04d8.yml
3-
openapi_spec_hash: 15877c256d01485dacbb4e348d79845d
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-8805efc665011161897e5c4c326dc44090ae55471a36bef8d63d17fec4e289f1.yml
3+
openapi_spec_hash: 4d348158fc0b5daa3f55d831301859e4
44
config_hash: 60681f589a9e641fdb7f19af2021a033

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.53.0 (2025-07-30)
4+
5+
Full Changelog: [v0.52.0...v0.53.0](https://github.com/runloopai/api-client-python/compare/v0.52.0...v0.53.0)
6+
7+
### Features
8+
9+
* **api:** api update ([1854faf](https://github.com/runloopai/api-client-python/commit/1854faf3e7a0a63b136d7fceaf03352afe9181a7))
10+
311
## 0.52.0 (2025-07-30)
412

513
Full Changelog: [v0.51.0...v0.52.0](https://github.com/runloopai/api-client-python/compare/v0.51.0...v0.52.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "runloop_api_client"
3-
version = "0.52.0"
3+
version = "0.53.0"
44
description = "The official Python library for the runloop API"
55
dynamic = ["readme"]
66
license = "MIT"

src/runloop_api_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "runloop_api_client"
4-
__version__ = "0.52.0" # x-release-please-version
4+
__version__ = "0.53.0" # x-release-please-version

src/runloop_api_client/types/blueprint_view.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
from typing import Dict, List, Optional
44
from typing_extensions import Literal
55

6-
from pydantic import Field as FieldInfo
7-
86
from .._models import BaseModel
97
from .blueprint_build_parameters import BlueprintBuildParameters
108

@@ -64,9 +62,7 @@ class BlueprintView(BaseModel):
6462
base_blueprint_id: Optional[str] = None
6563
"""The ID of the base Blueprint."""
6664

67-
containerized_services: Optional[List[ContainerizedService]] = FieldInfo(
68-
alias="containerizedServices", default=None
69-
)
65+
containerized_services: Optional[List[ContainerizedService]] = None
7066
"""List of ContainerizedServices available in the Blueprint.
7167
7268
Services can be explicitly started when creating a Devbox.

0 commit comments

Comments
 (0)