Skip to content

Commit cf2b141

Browse files
committed
chore(versionable): prepare release 0.2.0
1 parent 751c2ca commit cf2b141

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

tfhe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ sha3 = { version = "0.10", optional = true }
7979
itertools = "0.11.0"
8080
rand_core = { version = "0.6.4", features = ["std"] }
8181
tfhe-zk-pok = { version = "0.2.0", path = "../tfhe-zk-pok", optional = true }
82-
tfhe-versionable = { version = "0.1.0", path = "../utils/tfhe-versionable" }
82+
tfhe-versionable = { version = "0.2.0", path = "../utils/tfhe-versionable" }
8383

8484
# wasm deps
8585
wasm-bindgen = { version = "0.2.86", features = [

tfhe/docs/guides/data_versioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You can load serialized data with the `unversionize` function, even in newer ver
1717
[dependencies]
1818
# ...
1919
tfhe = { version = "0.8.0", features = ["integer","x86_64-unix"]}
20-
tfhe-versionable = "0.1.0"
20+
tfhe-versionable = "0.2.0"
2121
bincode = "1.3.3"
2222
```
2323

utils/tfhe-versionable-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tfhe-versionable-derive"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
keywords = ["versioning", "serialization", "encoding", "proc-macro", "derive"]
66
homepage = "https://zama.ai/"

utils/tfhe-versionable/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tfhe-versionable"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
keywords = ["versioning", "serialization", "encoding"]
66
homepage = "https://zama.ai/"
@@ -26,6 +26,6 @@ toml = "0.8"
2626

2727
[dependencies]
2828
serde = { version = "1.0", features = ["derive"] }
29-
tfhe-versionable-derive = { version = "0.1.0", path = "../tfhe-versionable-derive" }
29+
tfhe-versionable-derive = { version = "0.2.0", path = "../tfhe-versionable-derive" }
3030
num-complex = { version = "0.4", features = ["serde"] }
3131
aligned-vec = { version = "0.5", features = ["serde"] }

utils/tfhe-versionable/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TFHE-versionable
22
This crate provides type level versioning for serialized data. It offers a way to add backward
3-
compatibility on any data type. The versioning scheme works recursively and is idependant of the
3+
compatibility on any data type. The versioning scheme works recursively and is independant of the
44
chosen serialization backend.
55

66
To use it, simply define an enum that have a variant for each version of your target type.

0 commit comments

Comments
 (0)