diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..15e1932 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,10 @@ +.github/ +dist/ +docs/ +flows/ +publish/ +scripts/ +services/ +tests/ +test-vectors/ +vlei-server/ diff --git a/Makefile b/Makefile index 841f647..0537d47 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: push-all, build, publish -VERSION=1.0.0 +VERSION=1.0.1 IMAGE_NAME=gleif/vlei LATEST_TAG=$(IMAGE_NAME):latest VERSION_TAG=$(IMAGE_NAME):$(VERSION) @@ -11,7 +11,6 @@ push-all: build: @docker build \ --platform=linux/amd64,linux/arm64 \ - --no-cache \ -f container/Dockerfile \ --tag $(LATEST_TAG) \ --tag $(VERSION_TAG) \ diff --git a/setup.py b/setup.py index c79ad95..9d87d1b 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( name='vlei', - version='1.0.0', # also change in src/vlei/__init__.py + version='1.0.1', # also change in src/vlei/__init__.py license='Apache Software License 2.0', description='Verifiable Legal Entity Identifier', long_description=long_description, @@ -75,7 +75,7 @@ python_requires='>=3.12.6', install_requires=[ 'hio==0.6.14', - 'keri>=1.2.6', + 'keri>=1.2.7', 'falcon>=4.0.2', 'multicommand>=1.0.0' ], diff --git a/src/vlei/__init__.py b/src/vlei/__init__.py index cc18f6e..2651796 100644 --- a/src/vlei/__init__.py +++ b/src/vlei/__init__.py @@ -1,4 +1,4 @@ # -*- encoding: utf-8 -*- -__version__ = '1.0.0' # also change in setup.py +__version__ = '1.0.1' # also change in setup.py diff --git a/src/vlei/app/serving.py b/src/vlei/app/serving.py index 2361f19..9322205 100644 --- a/src/vlei/app/serving.py +++ b/src/vlei/app/serving.py @@ -61,7 +61,8 @@ def __init__(self, oobiDir): for file in files: p = Path(oobiDir, file) url = p.open().read() - logger.info(f"serving well known {file}: {url}") + logger.info(f"serving well known {file}") + logger.debug(url) def on_get(self, req, rep, alias): """