Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

chore: bump version to v0.5.0 #67

Merged
merged 1 commit into from
Dec 21, 2023
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 Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PACKAGE_VERSION=0.4.0
PACKAGE_VERSION=0.5.0

SPEC_PATCHED_FILE=./metal_openapi.fixed.yaml
OPENAPI_CODEGEN_TAG=v7.0.0
Expand Down
2 changes: 1 addition & 1 deletion equinix_metal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ To exclude resources, and optimize response delivery, use the `exclude` query pa
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.0
- Package version: 0.4.0
- Package version: 0.5.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down
2 changes: 1 addition & 1 deletion equinix_metal/equinix_metal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
""" # noqa: E501


__version__ = "0.4.0"
__version__ = "0.5.0"

# import apis into sdk package
from equinix_metal.api.authentication_api import AuthenticationApi
Expand Down
2 changes: 1 addition & 1 deletion equinix_metal/equinix_metal/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'metal-python/0.4.0'
self.user_agent = 'metal-python/0.5.0'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion equinix_metal/equinix_metal/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 1.0.0\n"\
"SDK Package Version: 0.4.0".\
"SDK Package Version: 0.5.0".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion equinix_metal/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "equinix_metal"
version = "0.4.0"
version = "0.5.0"
description = "Metal API"
authors = ["Equinix Metal API Team <[email protected]>"]
license = "Equinix Metal"
Expand Down
2 changes: 1 addition & 1 deletion equinix_metal/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "equinix-metal"
VERSION = "0.4.0"
VERSION = "0.5.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down