From c9f4efb16a7a91d1b0dc248494b347168bd7186c Mon Sep 17 00:00:00 2001 From: Kevin Griffin Date: Wed, 11 Sep 2024 10:34:00 -0400 Subject: [PATCH] 1.2.0 release candidate Signed-off-by: Kevin Griffin --- Makefile | 2 +- setup.py | 2 +- src/keri/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4bf4ec2f..926f97ab 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: build-keri -VERSION=1.2.0-dev13 +VERSION=1.2.0-rc1 define DOCKER_WARNING In order to use the multi-platform build enable the containerd image store diff --git a/setup.py b/setup.py index a704266a..4340dfa2 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ from setuptools import find_packages, setup setup( name='keri', - version='1.2.0-dev13', # also change in src/keri/__init__.py + version='1.2.0-rc1', # 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 09ed18bf..a05d64ce 100644 --- a/src/keri/__init__.py +++ b/src/keri/__init__.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -__version__ = '1.2.0-dev13' # also change in setup.py +__version__ = '1.2.0-rc1' # also change in setup.py