Skip to content

Commit c4f1725

Browse files
release: 0.1.5 (#50)
* feat(api): manual updates (#49) * release: 0.1.5 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 3fb199d commit c4f1725

28 files changed

+47
-56
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.1.4"
2+
".": "0.1.5"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 111
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-f6598ab5d6827f66b642201769e92590ea32af84ebbf24b18cc32b33dee5107e.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-410f762771ac58738f3d165b19c5e2e9377ebbfa3f090f041e269142cfa2e7f4.yml

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.1.5 (2025-02-18)
4+
5+
Full Changelog: [v0.1.4...v0.1.5](https://github.com/gitpod-io/gitpod-sdk-python/compare/v0.1.4...v0.1.5)
6+
7+
### Features
8+
9+
* **api:** manual updates ([#49](https://github.com/gitpod-io/gitpod-sdk-python/issues/49)) ([3e29d91](https://github.com/gitpod-io/gitpod-sdk-python/commit/3e29d910f0c75eacbe0693cc82c68063f2782fc2))
10+
311
## 0.1.4 (2025-02-18)
412

513
Full Changelog: [v0.1.3...v0.1.4](https://github.com/gitpod-io/gitpod-sdk-python/compare/v0.1.3...v0.1.4)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "gitpod-sdk"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "The official Python library for the gitpod API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/gitpod/_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__ = "gitpod"
4-
__version__ = "0.1.4" # x-release-please-version
4+
__version__ = "0.1.5" # x-release-please-version
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import Optional
43

54
from .._models import BaseModel
65
from .environment import Environment
@@ -9,5 +8,5 @@
98

109

1110
class EnvironmentCreateFromProjectResponse(BaseModel):
12-
environment: Optional[Environment] = None
11+
environment: Environment
1312
"""+resource get environment"""
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import Optional
43

54
from pydantic import Field as FieldInfo
65

@@ -10,7 +9,7 @@
109

1110

1211
class EnvironmentCreateLogsTokenResponse(BaseModel):
13-
access_token: Optional[str] = FieldInfo(alias="accessToken", default=None)
12+
access_token: str = FieldInfo(alias="accessToken")
1413
"""
1514
access_token is the token that can be used to access the logs of the environment
1615
"""
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import Optional
43

54
from .._models import BaseModel
65
from .environment import Environment
@@ -9,5 +8,5 @@
98

109

1110
class EnvironmentCreateResponse(BaseModel):
12-
environment: Optional[Environment] = None
11+
environment: Environment
1312
"""+resource get environment"""
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import Optional
43

54
from .._models import BaseModel
65
from .environment import Environment
@@ -9,5 +8,5 @@
98

109

1110
class EnvironmentRetrieveResponse(BaseModel):
12-
environment: Optional[Environment] = None
11+
environment: Environment
1312
"""+resource get environment"""
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import Optional
43

54
from .service import Service
65
from ...._models import BaseModel
@@ -9,4 +8,4 @@
98

109

1110
class ServiceCreateResponse(BaseModel):
12-
service: Optional[Service] = None
11+
service: Service

0 commit comments

Comments
 (0)