Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.11.0 #61

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.5
0.11.0
2 changes: 1 addition & 1 deletion sdk/go/api_esc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/python/pulumi_esc_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
""" # noqa: E501


__version__ = "0.10.5.dev.0"
__version__ = "0.11.0.dev.0"

# import extensions
from pulumi_esc_sdk.esc_client import EscClient
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/pulumi_esc_sdk/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'esc-sdk/python/0.10.5-dev.0'
self.user_agent = 'esc-sdk/python/0.11.0-dev.0'
self.default_headers['X-Pulumi-Source'] = 'esc-sdk'
self.client_side_validation = configuration.client_side_validation

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/pulumi_esc_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def to_debug_report(self):
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"SDK Package Version: 0.10.5.dev.0".\
"SDK Package Version: 0.11.0.dev.0".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "pulumi-esc-sdk"
VERSION = "0.10.5.dev.0"
VERSION = "0.11.0.dev.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/esc/raw/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


const userAgent = 'esc-sdk/ts/0.10.5-dev.0';
const userAgent = 'esc-sdk/ts/0.11.0-dev.0';

import type { Configuration } from './configuration';
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
Expand Down
Loading