From fc0eccdc84ec3fead75b4f19a3de89872c3d25a7 Mon Sep 17 00:00:00 2001 From: 2byrds <2byrds@gmail.com> Date: Fri, 4 Oct 2024 16:13:57 -0400 Subject: [PATCH 1/3] upgraded to 1.2.0-rc3 Signed-off-by: 2byrds <2byrds@gmail.com> --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 38b7b4b..348e3f9 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='keria', - version='0.2.0-dev3', # also change in src/keria/__init__.py + version='0.2.0-rc1', # also change in src/keria/__init__.py license='Apache Software License 2.0', description='KERIA: KERI Agent in the cloud', long_description="KERIA: KERI Agent in the cloud.", @@ -76,7 +76,7 @@ python_requires='>=3.12.2', install_requires=[ 'hio>=0.6.14', - 'keri==1.2.0.dev13', + 'keri==1.2.0-rc3', 'mnemonic>=0.21', 'multicommand>=1.0.0', 'falcon>=3.1.3', From d46cb1a9b47100cdc103e4e21233a40bfe337b50 Mon Sep 17 00:00:00 2001 From: 2byrds <2byrds@gmail.com> Date: Fri, 4 Oct 2024 16:15:43 -0400 Subject: [PATCH 2/3] upgraded to 1.2.0-rc3 Signed-off-by: 2byrds <2byrds@gmail.com> --- src/keria/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keria/__init__.py b/src/keria/__init__.py index 323e2bb..babcc04 100644 --- a/src/keria/__init__.py +++ b/src/keria/__init__.py @@ -3,5 +3,5 @@ main package """ -__version__ = '0.2.0-dev3' # also change in setup.py +__version__ = '0.2.0-rc1' # also change in setup.py From 49a89a577158bb679ddbaa011c1904a5125768ed Mon Sep 17 00:00:00 2001 From: 2byrds <2byrds@gmail.com> Date: Thu, 10 Oct 2024 08:40:42 -0400 Subject: [PATCH 3/3] updated makefile to 0.2.0-rc1 Signed-off-by: 2byrds <2byrds@gmail.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2f8da66..3936460 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: build-keria build-keria: - @docker buildx build --platform=linux/amd64 --no-cache -f images/keria.dockerfile --tag weboftrust/keria:0.2.0-dev3 . + @docker buildx build --platform=linux/amd64 --no-cache -f images/keria.dockerfile --tag weboftrust/keria:0.2.0-rc1 . publish-keria: @docker push weboftrust/keria --all-tags \ No newline at end of file