diff --git a/CHANGELOG.md b/CHANGELOG.md index dafe681..9337914 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Changes in CipherCore 0.2.0 + +* **Added support for 128-bit integers** +* **Postpone resharing** Performance optimization to reduce communication by delaying conversions from 3-out-of-3 secret shares to 2-out-of-3, if 2-out-of-3 shares are not immediately required by proceeding operations (e.g. additions). + # Changes in CipherCore 0.1.3 * **Better SMPC protocol for Private set intersection** The new protocol follows the description of the Join protocol from . The operation is renamed from `SetIntersection` to `Join`, and supports four join flavors: Inner, Left, Union and Full. diff --git a/ciphercore-wrappers/python/setup.py b/ciphercore-wrappers/python/setup.py index fa25062..850723c 100644 --- a/ciphercore-wrappers/python/setup.py +++ b/ciphercore-wrappers/python/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup from setuptools_rust import Binding, RustExtension -__version__ = "0.1.3" +__version__ = "0.2.0" with open('../../README.md', 'r') as f: long_description = f.read()