diff --git a/backends/tfhe-cuda-backend/Cargo.toml b/backends/tfhe-cuda-backend/Cargo.toml index cde9ccd074..1915c3b784 100644 --- a/backends/tfhe-cuda-backend/Cargo.toml +++ b/backends/tfhe-cuda-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe-cuda-backend" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["Zama team"] license = "BSD-3-Clause-Clear" diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index cf93316693..40d2e15543 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe" -version = "1.0.0" +version = "1.0.1" edition = "2021" readme = "../README.md" keywords = ["fully", "homomorphic", "encryption", "fhe", "cryptography"] @@ -60,7 +60,7 @@ tfhe-fft = { version = "0.8.0", path = "../tfhe-fft", features = [ ] } tfhe-ntt = { version = "0.5.0", path = "../tfhe-ntt" } pulp = { workspace = true, features = ["default"] } -tfhe-cuda-backend = { version = "0.8.0", path = "../backends/tfhe-cuda-backend", optional = true } +tfhe-cuda-backend = { version = "0.8.1", path = "../backends/tfhe-cuda-backend", optional = true } aligned-vec = { workspace = true, features = ["default", "serde"] } dyn-stack = { workspace = true, features = ["default"] } paste = "1.0.7" diff --git a/tfhe/docs/configuration/run_on_gpu.md b/tfhe/docs/configuration/run_on_gpu.md index fba2288127..772dc753aa 100644 --- a/tfhe/docs/configuration/run_on_gpu.md +++ b/tfhe/docs/configuration/run_on_gpu.md @@ -18,7 +18,7 @@ This guide explains how to update your existing program to leverage GPU accelera To use the **TFHE-rs** GPU backend in your project, add the following dependency in your `Cargo.toml`. ```toml -tfhe = { version = "~1.0.0", features = ["boolean", "shortint", "integer", "gpu"] } +tfhe = { version = "~1.0.1", features = ["boolean", "shortint", "integer", "gpu"] } ``` {% hint style="success" %} diff --git a/tfhe/docs/fhe-computation/data-handling/data_versioning.md b/tfhe/docs/fhe-computation/data-handling/data_versioning.md index 7cf1e1f81f..6622b58912 100644 --- a/tfhe/docs/fhe-computation/data-handling/data_versioning.md +++ b/tfhe/docs/fhe-computation/data-handling/data_versioning.md @@ -16,7 +16,7 @@ You can load serialized data with the `unversionize` function, even in newer ver [dependencies] # ... -tfhe = { version = "~1.0.0", features = ["integer"] } +tfhe = { version = "~1.0.1", features = ["integer"] } tfhe-versionable = "0.5.0" bincode = "1.3.3" ``` diff --git a/tfhe/docs/fhe-computation/data-handling/serialization.md b/tfhe/docs/fhe-computation/data-handling/serialization.md index 573c153bc0..18882153d6 100644 --- a/tfhe/docs/fhe-computation/data-handling/serialization.md +++ b/tfhe/docs/fhe-computation/data-handling/serialization.md @@ -161,7 +161,7 @@ In the following example, we use [bincode](https://crates.io/crates/bincode) for [dependencies] # ... -tfhe = { version = "~1.0.0", features = ["integer"] } +tfhe = { version = "~1.0.1", features = ["integer"] } bincode = "1.3.3" ``` diff --git a/tfhe/docs/fhe-computation/types/array.md b/tfhe/docs/fhe-computation/types/array.md index 3f99d6a952..bfe8dd32da 100644 --- a/tfhe/docs/fhe-computation/types/array.md +++ b/tfhe/docs/fhe-computation/types/array.md @@ -19,7 +19,7 @@ The following example shows a complete workflow of working with encrypted arrays # Cargo.toml [dependencies] -tfhe = { version = "~1.0.0", features = ["integer"] } +tfhe = { version = "~1.0.1", features = ["integer"] } ``` ```rust diff --git a/tfhe/docs/fhe-computation/types/strings.md b/tfhe/docs/fhe-computation/types/strings.md index 64f319dd10..e58dde6c50 100644 --- a/tfhe/docs/fhe-computation/types/strings.md +++ b/tfhe/docs/fhe-computation/types/strings.md @@ -29,7 +29,7 @@ Here is an example: # Cargo.toml [dependencies] -tfhe = { version = "~1.0.0", features = ["integer", "strings"] } +tfhe = { version = "~1.0.1", features = ["integer", "strings"] } ``` ```rust diff --git a/tfhe/docs/getting_started/installation.md b/tfhe/docs/getting_started/installation.md index 64d1dce9ea..b2532d3bc9 100644 --- a/tfhe/docs/getting_started/installation.md +++ b/tfhe/docs/getting_started/installation.md @@ -7,7 +7,7 @@ This document provides instructions to set up **TFHE-rs** in your project. First, add **TFHE-rs** as a dependency in your `Cargo.toml`. ```toml -tfhe = { version = "~1.0.0", features = ["boolean", "shortint", "integer"] } +tfhe = { version = "~1.0.1", features = ["boolean", "shortint", "integer"] } ``` {% hint style="info" %} @@ -35,5 +35,5 @@ By default, **TFHE-rs** makes the assumption that hardware AES features are enab To add support for older CPU, import **TFHE-rs** with the `software-prng` feature in your `Cargo.toml`: ```toml -tfhe = { version = "~1.0.0", features = ["boolean", "shortint", "integer", "software-prng"] } +tfhe = { version = "~1.0.1", features = ["boolean", "shortint", "integer", "software-prng"] } ``` diff --git a/tfhe/docs/getting_started/quick_start.md b/tfhe/docs/getting_started/quick_start.md index e05c9f020e..bb56dbd211 100644 --- a/tfhe/docs/getting_started/quick_start.md +++ b/tfhe/docs/getting_started/quick_start.md @@ -59,7 +59,7 @@ edition = "2021" Then add the following configuration to include **TFHE-rs**: ```toml -tfhe = { version = "~1.0.0", features = ["integer"] } +tfhe = { version = "~1.0.1", features = ["integer"] } ``` Your updated `Cargo.toml` file should look like this: @@ -71,7 +71,7 @@ version = "0.1.0" edition = "2021" [dependencies] -tfhe = { version = "~1.0.0", features = ["integer"] } +tfhe = { version = "~1.0.1", features = ["integer"] } ``` If you are on a different platform please refer to the [installation documentation](installation.md) for configuration options of other supported platforms. diff --git a/tfhe/docs/references/core-crypto-api/tutorial.md b/tfhe/docs/references/core-crypto-api/tutorial.md index fe528205d7..9052dac281 100644 --- a/tfhe/docs/references/core-crypto-api/tutorial.md +++ b/tfhe/docs/references/core-crypto-api/tutorial.md @@ -9,7 +9,7 @@ Welcome to this tutorial about `TFHE-rs` `core_crypto` module. To use `TFHE-rs`, it first has to be added as a dependency in the `Cargo.toml`: ```toml -tfhe = { version = "~1.0.0" } +tfhe = { version = "~1.0.1" } ``` ### Commented code to double a 2-bit message in a leveled fashion and using a PBS with the `core_crypto` module. diff --git a/tfhe/docs/tutorials/ascii_fhe_string.md b/tfhe/docs/tutorials/ascii_fhe_string.md index 8b9f16c639..d6b248f3e4 100644 --- a/tfhe/docs/tutorials/ascii_fhe_string.md +++ b/tfhe/docs/tutorials/ascii_fhe_string.md @@ -28,7 +28,7 @@ To use the `FheUint8` type, enable the `integer` feature: # Cargo.toml [dependencies] -tfhe = { version = "~1.0.0", features = ["integer"] } +tfhe = { version = "~1.0.1", features = ["integer"] } ``` The `MyFheString::encrypt` function performs data validation to ensure the input string contains only ASCII characters. @@ -167,7 +167,7 @@ First, add the feature in your `Cargo.toml` # Cargo.toml [dependencies] -tfhe = { version = "~1.0.0", features = ["strings"] } +tfhe = { version = "~1.0.1", features = ["strings"] } ``` The `FheAsciiString` type allows to simply do homomorphic case changing of encrypted strings (and much more!):