diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fed4b17fa..c3e01e1e5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.52.0" + ".": "0.53.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 5be2d49b7..de587de97 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 92 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-2417f3ff96b2f0934e6ee5cafd072e111515712cebb58eff3690bda46b9e04d8.yml -openapi_spec_hash: 15877c256d01485dacbb4e348d79845d +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-8805efc665011161897e5c4c326dc44090ae55471a36bef8d63d17fec4e289f1.yml +openapi_spec_hash: 4d348158fc0b5daa3f55d831301859e4 config_hash: 60681f589a9e641fdb7f19af2021a033 diff --git a/CHANGELOG.md b/CHANGELOG.md index bcec25626..d734d1365 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.53.0 (2025-07-30) + +Full Changelog: [v0.52.0...v0.53.0](https://github.com/runloopai/api-client-python/compare/v0.52.0...v0.53.0) + +### Features + +* **api:** api update ([1854faf](https://github.com/runloopai/api-client-python/commit/1854faf3e7a0a63b136d7fceaf03352afe9181a7)) + ## 0.52.0 (2025-07-30) Full Changelog: [v0.51.0...v0.52.0](https://github.com/runloopai/api-client-python/compare/v0.51.0...v0.52.0) diff --git a/pyproject.toml b/pyproject.toml index 24ba2e86c..cac5532d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "runloop_api_client" -version = "0.52.0" +version = "0.53.0" description = "The official Python library for the runloop API" dynamic = ["readme"] license = "MIT" diff --git a/src/runloop_api_client/_version.py b/src/runloop_api_client/_version.py index d274d886e..70e50373d 100644 --- a/src/runloop_api_client/_version.py +++ b/src/runloop_api_client/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "runloop_api_client" -__version__ = "0.52.0" # x-release-please-version +__version__ = "0.53.0" # x-release-please-version diff --git a/src/runloop_api_client/types/blueprint_view.py b/src/runloop_api_client/types/blueprint_view.py index 7ea201c55..47e7baac8 100644 --- a/src/runloop_api_client/types/blueprint_view.py +++ b/src/runloop_api_client/types/blueprint_view.py @@ -3,8 +3,6 @@ from typing import Dict, List, Optional from typing_extensions import Literal -from pydantic import Field as FieldInfo - from .._models import BaseModel from .blueprint_build_parameters import BlueprintBuildParameters @@ -64,9 +62,7 @@ class BlueprintView(BaseModel): base_blueprint_id: Optional[str] = None """The ID of the base Blueprint.""" - containerized_services: Optional[List[ContainerizedService]] = FieldInfo( - alias="containerizedServices", default=None - ) + containerized_services: Optional[List[ContainerizedService]] = None """List of ContainerizedServices available in the Blueprint. Services can be explicitly started when creating a Devbox.