From b4e5221e71228e297f014e239b6e323e444d6838 Mon Sep 17 00:00:00 2001 From: govindr-cm <110488231+govindr-cm@users.noreply.github.com> Date: Fri, 21 Apr 2023 09:59:53 -0700 Subject: [PATCH] Prepare to push 0.2.0 to crates.io (#352) * preparing for pushing to-crates * preparing to update crates.io to 0.2.0 --- CHANGELOG.md | 5 +++++ ciphercore-wrappers/python/setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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()