Skip to content

Commit

Permalink
🎨 version 1.0.0rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Jul 11, 2024
1 parent 8344b0d commit f957b55
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ For legacy versions, please review our release history to found the version comp
Aries CloudController Python provides a robust client for interacting with Aries Cloud Agents (ACA-Py).

- **Fully Typed**: Offers a strongly-typed wrapper around the Aries Cloud Agent Python, enhancing developer experience and reducing errors.
- **Up-to-Date Support**: Compatible with the latest ACA-Py version (0.12.1), ensuring access to the most recent features and improvements.
- **Up-to-Date Support**: Compatible with the latest ACA-Py version (1.0.0rc4), ensuring access to the most recent features and improvements.
- **Auto-Generated Client**: Utilizes OpenAPI definitions for automatic generation, ensuring timely updates in line with new ACA-Py releases.
- **Multi-Tenancy and Authentication Support**: Facilitates working with multi-tenant APIs and integrates various authentication mechanisms.
- **Asynchronous API**: Supports asynchronous operations, enabling efficient handling of I/O-bound tasks.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "0.12.2b1"
__version__ = "1.0.0rc4"

from aries_cloudcontroller.acapy_client import AcaPyClient

Expand Down
8 changes: 4 additions & 4 deletions aries_cloudcontroller/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = "OpenAPI-Generator/0.12.2b1/python"
self.user_agent = "OpenAPI-Generator/1.0.0rc4/python"
self.client_side_validation = configuration.client_side_validation

async def __aenter__(self):
Expand Down Expand Up @@ -433,11 +433,11 @@ def __deserialize(self, data, klass):

if klass in self.PRIMITIVE_TYPES:
return self.__deserialize_primitive(data, klass)
elif klass is object:
elif klass == object:
return self.__deserialize_object(data)
elif klass is datetime.date:
elif klass == datetime.date:
return self.__deserialize_date(data)
elif klass is datetime.datetime:
elif klass == datetime.datetime:
return self.__deserialize_datetime(data)
elif issubclass(klass, Enum):
return self.__deserialize_enum(data, klass)
Expand Down
4 changes: 2 additions & 2 deletions aries_cloudcontroller/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,8 @@ def to_debug_report(self):
"Python SDK Debug Report:\n"
"OS: {env}\n"
"Python Version: {pyversion}\n"
"Version of the API: v0.12.1\n"
"SDK Package Version: 0.12.2b1".format(
"Version of the API: v1.0.0rc4\n"
"SDK Package Version: 1.0.0rc4".format(
env=sys.platform, pyversion=sys.version
)
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_requirements(filename: str):
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version="0.12.2b1",
version="1.0.0rc4",
description="A simple python client for controlling an ACA-Py agent",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit f957b55

Please sign in to comment.