Skip to content

Commit

Permalink
chore: version bump; logging fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kentbull committed Nov 22, 2024
1 parent 130f7f9 commit eb185f0
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/keri/__init__.py
Original file line number Diff line number Diff line change
@@ -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


2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/migrate/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand Down
28 changes: 24 additions & 4 deletions tests/app/cli/test_kli_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')


Expand Down

0 comments on commit eb185f0

Please sign in to comment.