Skip to content

Commit

Permalink
release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mk committed Nov 7, 2023
1 parent bad99c1 commit ee4daf1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PACKAGE_VERSION=0.3.0
PACKAGE_VERSION=0.4.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.3.0
- Package version: 0.4.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.3.0"
__version__ = "0.4.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.3.0'
self.user_agent = 'metal-python/0.4.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.3.0".\
"SDK Package Version: 0.4.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.3.0"
version = "0.4.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.3.0"
VERSION = "0.4.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down

0 comments on commit ee4daf1

Please sign in to comment.