From 9061ef9d3d0a1f129477d4075047dbb7baf648f3 Mon Sep 17 00:00:00 2001 From: Kevin Griffin Date: Fri, 26 Jul 2024 12:34:53 -0400 Subject: [PATCH] bump to 1.1.18 Signed-off-by: Kevin Griffin --- Makefile | 8 ++++---- README.md | 2 +- setup.py | 2 +- src/keri/__init__.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 5ce1a387..f22f2a22 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ .PHONY: build-keri build-keri: - @docker buildx build --platform=linux/amd64 -f images/keripy.dockerfile --tag weboftrust/keri:1.1.17 . - @docker buildx build --platform=linux/arm64 -f images/keripy.dockerfile --tag weboftrust/keri:1.1.17-arm64 . + @docker buildx build --platform=linux/amd64 -f images/keripy.dockerfile --tag weboftrust/keri:1.1.18 . + @docker buildx build --platform=linux/arm64 -f images/keripy.dockerfile --tag weboftrust/keri:1.1.18-arm64 . .PHONY: build-witness-demo build-witness-demo: - @@docker buildx build --platform=linux/amd64 -f images/witness.demo.dockerfile --tag weboftrust/keri-witness-demo:1.1.17 . - @@docker buildx build --platform=linux/arm64 -f images/witness.demo.dockerfile --tag weboftrust/keri-witness-demo:1.1.17-arm64 . + @@docker buildx build --platform=linux/amd64 -f images/witness.demo.dockerfile --tag weboftrust/keri-witness-demo:1.1.18 . + @@docker buildx build --platform=linux/arm64 -f images/witness.demo.dockerfile --tag weboftrust/keri-witness-demo:1.1.18-arm64 . .PHONY: publish-keri publish-keri: diff --git a/README.md b/README.md index 57da6605..8936cf55 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.17` 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.18` 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 15f436d4..e29a9fd2 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ from setuptools import find_packages, setup setup( name='keri', - version='1.1.17', # also change in src/keri/__init__.py + version='1.1.18', # 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 1aaad600..b33bc909 100644 --- a/src/keri/__init__.py +++ b/src/keri/__init__.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -__version__ = '1.1.17' # also change in setup.py +__version__ = '1.1.18' # also change in setup.py