diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 1592e288..a30a2d86 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -37,7 +37,7 @@ jobs: python -m pip install --upgrade pip pip install \ isort~=5.13.2 \ - black~=24.8.0 + black~=24.10.0 - name: Check import style with isort run: | isort . --check --profile black --diff diff --git a/.github/workflows/python-test-publish.yml b/.github/workflows/python-test-publish.yml index daeda527..1e59ca88 100644 --- a/.github/workflows/python-test-publish.yml +++ b/.github/workflows/python-test-publish.yml @@ -39,7 +39,7 @@ jobs: python -m pip install --upgrade pip pip install \ isort~=5.13.2 \ - black~=24.8.0 + black~=24.10.0 - name: Check import style with isort run: | isort . --check --profile black --diff diff --git a/aries_cloudcontroller/acapy_client.py b/aries_cloudcontroller/acapy_client.py index c13f278a..d478407f 100644 --- a/aries_cloudcontroller/acapy_client.py +++ b/aries_cloudcontroller/acapy_client.py @@ -9,6 +9,7 @@ CredentialsApi, DefaultApi, DidExchangeApi, + DidRotateApi, DiscoverFeaturesApi, DiscoverFeaturesV20Api, EndorseTransactionApi, @@ -42,6 +43,7 @@ class AcaPyClient(AbstractAsyncContextManager): credentials: CredentialsApi default: DefaultApi did_exchange: DidExchangeApi + did_rotate: DidRotateApi discover_features: DiscoverFeaturesApi discover_features_v2_0: DiscoverFeaturesV20Api endorse_transaction: EndorseTransactionApi diff --git a/requirements.dev.txt b/requirements.dev.txt index 6d5b9153..433f1e49 100644 --- a/requirements.dev.txt +++ b/requirements.dev.txt @@ -1,7 +1,7 @@ -anyio~=4.4.0 +anyio~=4.6.0 autoflake~=2.3.1 -black~=24.8.0 +black~=24.10.0 isort~=5.13.2 -pytest~=8.3.2 +pytest~=8.3.3 pytest-mock~=3.14.0 -ruff~=0.6.2 +ruff~=0.6.9 diff --git a/setup.py b/setup.py index 9ed6292d..aa7122af 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def parse_requirements(filename: str): if __name__ == "__main__": setup( name=PACKAGE_NAME, - version="1.0.0b0", + version="1.0.0b1", description="A simple python client for controlling an ACA-Py agent", long_description=long_description, long_description_content_type="text/markdown",