diff --git a/setup.py b/setup.py index 8342e72e9..129e0ae1e 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ from setuptools import find_packages, setup setup( name='keri', - version='0.6.6', # also change in src/keri/__init__.py + version='0.6.7', # 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", @@ -71,26 +71,26 @@ python_requires='>=3.10.4', install_requires=[ 'lmdb>=1.3.0', - 'pysodium>=0.7.11', + 'pysodium>=0.7.12', 'blake3>=0.3.1', - 'msgpack>=1.0.3', + 'msgpack>=1.0.4', 'cbor2>=5.4.3', 'multidict>=6.0.2', 'ordered-set>=4.1.0', - 'hio>=0.6.0', + 'hio>=0.6.7', 'multicommand>=1.0.0', - 'jsonschema>=4.5.0', + 'jsonschema>=4.6.0', 'falcon>=3.1.0', 'daemonocle>=1.2.3', 'hjson>=3.0.2', 'PyYaml>=6.0', - 'apispec>=5.2.1', + 'apispec>=5.2.2', 'mnemonic>=0.20' ], extras_require={ }, tests_require=[ - 'coverage>=6.3.2', + 'coverage>=6.4.1', 'pytest>=7.1.2', ], setup_requires=[ diff --git a/src/keri/__init__.py b/src/keri/__init__.py index c131e7dbe..490d804d1 100644 --- a/src/keri/__init__.py +++ b/src/keri/__init__.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -__version__ = '0.6.6' # also change in setup.py +__version__ = '0.6.7' # also change in setup.py