Skip to content

Commit 9d1c0a9

Browse files
committed
Post release version bump
1 parent 835010f commit 9d1c0a9

10 files changed

Lines changed: 10 additions & 10 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ TEST_OPTS=-v -test.timeout 300s
33
GIT_USER_ID?=koyeb
44
GIT_REPO_ID?=koyeb-api-client-python
55
OPENAPI_GENERATOR_VERSION?=latest
6-
PACKAGE_VERSION?=1.4.1
6+
PACKAGE_VERSION?=1.4.2
77
DOCKER ?= docker
88

99

bumpver.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpver]
2-
current_version = "1.4.1"
2+
current_version = "1.4.2"
33
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
44
commit = false
55
tag = false

koyeb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coding: utf-8
22

3-
__version__ = "1.4.1"
3+
__version__ = "1.4.2"
44

55
# Make Sandbox available at package level
66
from .sandbox import Sandbox, AsyncSandbox

koyeb/api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "1.4.1"
17+
__version__ = "1.4.2"
1818

1919
# Define package exports
2020
__all__ = [

koyeb/api/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = 'OpenAPI-Generator/1.4.1/python'
94+
self.user_agent = 'OpenAPI-Generator/1.4.2/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

koyeb/api/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def to_debug_report(self) -> str:
554554
"OS: {env}\n"\
555555
"Python Version: {pyversion}\n"\
556556
"Version of the API: 1.0.0\n"\
557-
"SDK Package Version: 1.4.1".\
557+
"SDK Package Version: 1.4.2".\
558558
format(env=sys.platform, pyversion=sys.version)
559559

560560
def get_host_settings(self) -> List[HostSetting]:

koyeb/api_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Koyeb API allows you to interact with the Koyeb platform in a simple, progra
44
The `koyeb.api` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: 1.0.0
7-
- Package version: 1.4.1
7+
- Package version: 1.4.2
88
- Generator version: 7.22.0-SNAPSHOT
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

koyeb/sandbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Koyeb Sandbox - Interactive execution environment for running arbitrary code on Koyeb
55
"""
66

7-
__version__ = "1.4.1"
7+
__version__ = "1.4.2"
88

99
from koyeb.api.models.instance_status import InstanceStatus as SandboxStatus
1010

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "koyeb-sdk"
3-
version = "1.4.1"
3+
version = "1.4.2"
44
description = "Koyeb python sdk"
55
authors = [{ name = "Koyeb team", email = "support@koyeb.com" }]
66
license = "Apache-2.0"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)