diff --git a/Makefile b/Makefile index af46a7fff..23f2586ab 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: build-keri -VERSION=1.1.22 +VERSION=1.1.23 define DOCKER_WARNING In order to use the multi-platform build enable the containerd image store diff --git a/README.md b/README.md index 8c9bd01ed..367a4f1bf 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ to get a version string similar to the following: ### Local installation - Docker build Run `make build-keri` to build your docker image. -Then run `docker run --pull=never -it --entrypoint /bin/bash weboftrust/keri:1.1.22` and you can run `kli version` from within the running container to play with KERIpy. +Then run `docker run --pull=never -it --entrypoint /bin/bash weboftrust/keri:1.1.23` and you can run `kli version` from within the running container to play with KERIpy. Make sure the image tag matches the version used in the `Makefile`. We use `--pull=never` to ensure that docker does not implicitly pull a remote image and relies on the local image tagged during `make build-keri`. diff --git a/setup.py b/setup.py index 72408885d..d8ad193c1 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ from setuptools import find_packages, setup setup( name='keri', - version='1.1.22', # also change in src/keri/__init__.py + version='1.1.23', # also change in src/keri/__init__.py license='Apache Software License 2.0', description='Key Event Receipt Infrastructure', long_description="KERI Decentralized Key Management Infrastructure", diff --git a/src/keri/__init__.py b/src/keri/__init__.py index e63adf6cb..99000ec16 100644 --- a/src/keri/__init__.py +++ b/src/keri/__init__.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -__version__ = '1.1.22' # also change in setup.py +__version__ = '1.1.23' # also change in setup.py diff --git a/src/keri/app/cli/commands/migrate/run.py b/src/keri/app/cli/commands/migrate/run.py index 499ed3ebb..de2a62eb4 100644 --- a/src/keri/app/cli/commands/migrate/run.py +++ b/src/keri/app/cli/commands/migrate/run.py @@ -11,7 +11,7 @@ from keri import kering from keri.db import basing -logger = help.ogler.getLogger("keri") +logger = help.ogler.getLogger() def handler(args): """ diff --git a/tests/app/cli/test_kli_commands.py b/tests/app/cli/test_kli_commands.py index 1fcfd566f..afb021102 100644 --- a/tests/app/cli/test_kli_commands.py +++ b/tests/app/cli/test_kli_commands.py @@ -233,19 +233,39 @@ def test_standalone_kli_commands(helpers, capsys): '\t3. DEMwUl3u8mJ-cWxSnReA0rQesIgZ8SFoHp0U2WyiZjRt\n' '\n') - args = parser.parse_args(["escrow", "--name", "test"]) + args = parser.parse_args(["escrow", "list", "--name", "test"]) assert args.handler is not None doers = args.handler(args) directing.runController(doers=doers) capesc = capsys.readouterr() assert capesc.out == ('{\n' - ' "out-of-order-events": [],\n' - ' "partially-witnessed-events": [],\n' + ' "unverified-receipts": 0,\n' + ' "verified-receipts": 0,\n' ' "partially-signed-events": [],\n' + ' "partially-witnessed-events": [],\n' + ' "unverified-event-indexed-couples": 0,\n' + ' "out-of-order-events": [],\n' ' "likely-duplicitous-events": [],\n' + ' "query-not-found": 0,\n' + ' "partially-delegated-events": 0,\n' + ' "reply": 0,\n' + ' "failed-oobi": 0,\n' + ' "group-partial-witness": 0,\n' + ' "group-delegate": 0,\n' + ' "delegated-partial-witness": 0,\n' + ' "group-partial-signed": 0,\n' + ' "exchange-partial-signed": 0,\n' + ' "delegated-unanchored": 0,\n' + ' "tel-out-of-order": 0,\n' + ' "tel-partially-witnessed": 0,\n' + ' "tel-anchorless": 0,\n' ' "missing-registry-escrow": [],\n' ' "broken-chain-escrow": [],\n' - ' "missing-schema-escrow": []\n' + ' "missing-schema-escrow": [],\n' + ' "tel-missing-signature": 0,\n' + ' "tel-partial-witness-escrow": 0,\n' + ' "tel-multisig": 0,\n' + ' "tel-event-dissemination": 0\n' '}\n')