From fbda08e828b223d84a40c80097a84102afee61cc Mon Sep 17 00:00:00 2001 From: Nicolas Sarlin Date: Wed, 10 Jul 2024 10:16:39 +0200 Subject: [PATCH] chore(versionable): prepare release 0.2.0 --- tfhe/Cargo.toml | 2 +- tfhe/docs/guides/data_versioning.md | 2 +- utils/tfhe-versionable-derive/Cargo.toml | 2 +- utils/tfhe-versionable/Cargo.toml | 4 ++-- utils/tfhe-versionable/README.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index 9137c2e446..ae3dbf09e7 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -79,7 +79,7 @@ sha3 = { version = "0.10", optional = true } itertools = "0.11.0" rand_core = { version = "0.6.4", features = ["std"] } tfhe-zk-pok = { version = "0.2.0", path = "../tfhe-zk-pok", optional = true } -tfhe-versionable = { version = "0.1.0", path = "../utils/tfhe-versionable" } +tfhe-versionable = { version = "0.2.0", path = "../utils/tfhe-versionable" } # wasm deps wasm-bindgen = { version = "0.2.86", features = [ diff --git a/tfhe/docs/guides/data_versioning.md b/tfhe/docs/guides/data_versioning.md index 4441290f9c..f5f344b559 100644 --- a/tfhe/docs/guides/data_versioning.md +++ b/tfhe/docs/guides/data_versioning.md @@ -17,7 +17,7 @@ You can load serialized data with the `unversionize` function, even in newer ver [dependencies] # ... tfhe = { version = "0.8.0", features = ["integer","x86_64-unix"]} -tfhe-versionable = "0.1.0" +tfhe-versionable = "0.2.0" bincode = "1.3.3" ``` diff --git a/utils/tfhe-versionable-derive/Cargo.toml b/utils/tfhe-versionable-derive/Cargo.toml index 9d12a5227d..a0889dde64 100644 --- a/utils/tfhe-versionable-derive/Cargo.toml +++ b/utils/tfhe-versionable-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe-versionable-derive" -version = "0.1.0" +version = "0.2.0" edition = "2021" keywords = ["versioning", "serialization", "encoding", "proc-macro", "derive"] homepage = "https://zama.ai/" diff --git a/utils/tfhe-versionable/Cargo.toml b/utils/tfhe-versionable/Cargo.toml index e09f1e72c3..cc8b6efab2 100644 --- a/utils/tfhe-versionable/Cargo.toml +++ b/utils/tfhe-versionable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe-versionable" -version = "0.1.0" +version = "0.2.0" edition = "2021" keywords = ["versioning", "serialization", "encoding"] homepage = "https://zama.ai/" @@ -26,6 +26,6 @@ toml = "0.8" [dependencies] serde = { version = "1.0", features = ["derive"] } -tfhe-versionable-derive = { version = "0.1.0", path = "../tfhe-versionable-derive" } +tfhe-versionable-derive = { version = "0.2.0", path = "../tfhe-versionable-derive" } num-complex = { version = "0.4", features = ["serde"] } aligned-vec = { version = "0.5", features = ["serde"] } diff --git a/utils/tfhe-versionable/README.md b/utils/tfhe-versionable/README.md index 1e88b0d477..3ff1cf0675 100644 --- a/utils/tfhe-versionable/README.md +++ b/utils/tfhe-versionable/README.md @@ -1,6 +1,6 @@ # TFHE-versionable This crate provides type level versioning for serialized data. It offers a way to add backward -compatibility on any data type. The versioning scheme works recursively and is idependant of the +compatibility on any data type. The versioning scheme works recursively and is independant of the chosen serialization backend. To use it, simply define an enum that have a variant for each version of your target type.