Skip to content

Commit 696f9f1

Browse files
committed
chore: prepare release 1.3.2
1 parent 663943f commit 696f9f1

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

tfhe/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"
3-
version = "1.3.1"
3+
version = "1.3.2"
44
edition = "2021"
55
readme = "../README.md"
66
keywords = ["fully", "homomorphic", "encryption", "fhe", "cryptography"]

tfhe/docs/configuration/gpu-acceleration/run-on-gpu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ To compile and execute GPU TFHE-rs programs, make sure your system has the follo
7474
To use the **TFHE-rs** GPU backend in your project, add the following dependency in your `Cargo.toml`.
7575

7676
```toml
77-
tfhe = { version = "~1.3.1", features = ["boolean", "shortint", "integer", "gpu"] }
77+
tfhe = { version = "~1.3.2", features = ["boolean", "shortint", "integer", "gpu"] }
7878
```
7979

8080
If none of the supported backends is configured in `Cargo.toml`, the CPU backend is used.

tfhe/docs/configuration/hpu-acceleration/run-on-hpu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This guide explains how to update your existing program to leverage HPU accelera
1717
To use the **TFHE-rs** HPU backend in your project, add the following dependency in your `Cargo.toml`.
1818

1919
```toml
20-
tfhe = { version = "~1.3.1", features = ["integer", "hpu-v80"] }
20+
tfhe = { version = "~1.3.2", features = ["integer", "hpu-v80"] }
2121
```
2222

2323
{% hint style="success" %}

tfhe/docs/fhe-computation/data-handling/data-versioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can load serialized data with the `unversionize` function, even in newer ver
1616

1717
[dependencies]
1818
# ...
19-
tfhe = { version = "~1.3.1", features = ["integer"] }
19+
tfhe = { version = "~1.3.2", features = ["integer"] }
2020
tfhe-versionable = "0.5.0"
2121
bincode = "1.3.3"
2222
```

tfhe/docs/fhe-computation/data-handling/serialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ In the following example, we use [bincode](https://crates.io/crates/bincode) for
161161

162162
[dependencies]
163163
# ...
164-
tfhe = { version = "~1.3.1", features = ["integer"] }
164+
tfhe = { version = "~1.3.2", features = ["integer"] }
165165
bincode = "1.3.3"
166166
```
167167

tfhe/docs/fhe-computation/types/array.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following example shows a complete workflow of working with encrypted arrays
1919
# Cargo.toml
2020

2121
[dependencies]
22-
tfhe = { version = "~1.3.1", features = ["integer"] }
22+
tfhe = { version = "~1.3.2", features = ["integer"] }
2323
```
2424

2525
```rust

tfhe/docs/fhe-computation/types/strings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Here is an example:
2929
# Cargo.toml
3030

3131
[dependencies]
32-
tfhe = { version = "~1.3.1", features = ["integer", "strings"] }
32+
tfhe = { version = "~1.3.2", features = ["integer", "strings"] }
3333
```
3434

3535
```rust

tfhe/docs/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This document provides instructions to set up **TFHE-rs** in your project.
77
First, add **TFHE-rs** as a dependency in your `Cargo.toml`.
88

99
```toml
10-
tfhe = { version = "~1.3.1", features = ["boolean", "shortint", "integer"] }
10+
tfhe = { version = "~1.3.2", features = ["boolean", "shortint", "integer"] }
1111
```
1212

1313
{% hint style="info" %}
@@ -35,7 +35,7 @@ By default, **TFHE-rs** makes the assumption that hardware AES features are enab
3535
To add support for older CPU, import **TFHE-rs** with the `software-prng` feature in your `Cargo.toml`:
3636

3737
```toml
38-
tfhe = { version = "~1.3.1", features = ["boolean", "shortint", "integer", "software-prng"] }
38+
tfhe = { version = "~1.3.2", features = ["boolean", "shortint", "integer", "software-prng"] }
3939
```
4040

4141
## Hardware acceleration

tfhe/docs/getting-started/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ edition = "2021"
5959
Then add the following configuration to include **TFHE-rs**:
6060

6161
```toml
62-
tfhe = { version = "~1.3.1", features = ["integer"] }
62+
tfhe = { version = "~1.3.2", features = ["integer"] }
6363
```
6464

6565
Your updated `Cargo.toml` file should look like this:
@@ -71,7 +71,7 @@ version = "0.1.0"
7171
edition = "2021"
7272

7373
[dependencies]
74-
tfhe = { version = "~1.3.1", features = ["integer"] }
74+
tfhe = { version = "~1.3.2", features = ["integer"] }
7575
```
7676

7777
If you are on a different platform please refer to the [installation documentation](installation.md) for configuration options of other supported platforms.

tfhe/docs/references/core-crypto-api/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Welcome to this tutorial about `TFHE-rs` `core_crypto` module.
99
To use `TFHE-rs`, it first has to be added as a dependency in the `Cargo.toml`:
1010

1111
```toml
12-
tfhe = { version = "~1.3.1" }
12+
tfhe = { version = "~1.3.2" }
1313
```
1414

1515
### Commented code to double a 2-bit message in a leveled fashion and using a PBS with the `core_crypto` module.

0 commit comments

Comments
 (0)