Skip to content

Commit 0ce0567

Browse files
committed
chore(tfhe): bump version to 0.5.3
1 parent e9c19b4 commit 0ce0567

File tree

9 files changed

+14
-14
lines changed

9 files changed

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

tfhe/docs/core_crypto/tutorial.md

Lines changed: 4 additions & 4 deletions
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 = "0.5.2", features = [ "x86_64-unix" ] }
12+
tfhe = { version = "0.5.3", features = [ "x86_64-unix" ] }
1313
```
1414

1515
This enables the `x86_64-unix` feature to have efficient implementations of various algorithms for `x86_64` CPUs on a Unix-like system. The 'unix' suffix indicates that the `UnixSeeder`, which uses `/dev/random` to generate random numbers, is activated as a fallback if no hardware number generator is available (like `rdseed` on `x86_64` or if the [`Randomization Services`](https://developer.apple.com/documentation/security/1399291-secrandomcopybytes?language=objc) on Apple platforms are not available). To avoid having the `UnixSeeder` as a potential fallback or to run on non-Unix systems (e.g., Windows), the `x86_64` feature is sufficient.
@@ -19,19 +19,19 @@ For Apple Silicon, the `aarch64-unix` or `aarch64` feature should be enabled. `a
1919
In short: For `x86_64`-based machines running Unix-like OSes:
2020

2121
```toml
22-
tfhe = { version = "0.5.2", features = ["x86_64-unix"] }
22+
tfhe = { version = "0.5.3", features = ["x86_64-unix"] }
2323
```
2424

2525
For Apple Silicon or aarch64-based machines running Unix-like OSes:
2626

2727
```toml
28-
tfhe = { version = "0.5.2", features = ["aarch64-unix"] }
28+
tfhe = { version = "0.5.3", features = ["aarch64-unix"] }
2929
```
3030

3131
For `x86_64`-based machines with the [`rdseed instruction`](https://en.wikipedia.org/wiki/RDRAND) running Windows:
3232

3333
```toml
34-
tfhe = { version = "0.5.2", features = ["x86_64"] }
34+
tfhe = { version = "0.5.3", features = ["x86_64"] }
3535
```
3636

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

tfhe/docs/getting_started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ To use `TFHE-rs` in your project, you first need to add it as a dependency in yo
88

99
If you are using an `x86` machine:
1010
```toml
11-
tfhe = { version = "0.5.2", features = [ "boolean", "shortint", "integer", "x86_64-unix" ] }
11+
tfhe = { version = "0.5.3", features = [ "boolean", "shortint", "integer", "x86_64-unix" ] }
1212
```
1313

1414
If you are using an `ARM` machine:
1515
```toml
16-
tfhe = { version = "0.5.2", features = [ "boolean", "shortint", "integer", "aarch64-unix" ] }
16+
tfhe = { version = "0.5.3", features = [ "boolean", "shortint", "integer", "aarch64-unix" ] }
1717
```
1818

1919
{% hint style="info" %}

tfhe/docs/getting_started/quick_start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fn main() {
4444

4545
The default configuration for x86 Unix machines:
4646
```toml
47-
tfhe = { version = "0.5.2", features = ["integer", "x86_64-unix"]}
47+
tfhe = { version = "0.5.3", features = ["integer", "x86_64-unix"]}
4848
```
4949

5050
Configuration options for different platforms can be found [here](../getting_started/installation.md). Other rust and homomorphic types features can be found [here](../how_to/rust_configuration.md).

tfhe/docs/how_to/migrate_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Migrating Data to TFHE-rs 0.5.2 (This Release)
1+
# Migrating Data to TFHE-rs 0.5.3 (This Release)
22

33
Forward compatibility code to migrate data from TFHE-rs 0.4 to TFHE-rs 0.5 has been added in a minor release of TFHE-rs 0.4, the documentation about the process can be found [here](https://docs.zama.ai/tfhe-rs/v/0.4-1/how-to/migrate_data).

tfhe/docs/how_to/run_on_gpu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ To use the `TFHE-rs GPU backend` in your project, you first need to add it as a
1313

1414
If you are using an `x86` machine:
1515
```toml
16-
tfhe = { version = "0.5.2", features = [ "boolean", "shortint", "integer", "x86_64-unix", "gpu" ] }
16+
tfhe = { version = "0.5.3", features = [ "boolean", "shortint", "integer", "x86_64-unix", "gpu" ] }
1717
```
1818

1919
If you are using an `ARM` machine:
2020
```toml
21-
tfhe = { version = "0.5.2", features = [ "boolean", "shortint", "integer", "aarch64-unix", "gpu" ] }
21+
tfhe = { version = "0.5.3", features = [ "boolean", "shortint", "integer", "aarch64-unix", "gpu" ] }
2222
```
2323

2424

tfhe/docs/how_to/serialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To serialize our data, a [data format](https://serde.rs/#data-formats) should be
1111

1212
[dependencies]
1313
# ...
14-
tfhe = { version = "0.5.2", features = ["integer","x86_64-unix"]}
14+
tfhe = { version = "0.5.3", features = ["integer","x86_64-unix"]}
1515
bincode = "1.3.3"
1616
```
1717

tfhe/docs/tutorials/ascii_fhe_string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To use the `FheUint8` type, the `integer` feature must be activated:
2424

2525
[dependencies]
2626
# Default configuration for x86 Unix machines:
27-
tfhe = { version = "0.5.2", features = ["integer", "x86_64-unix"]}
27+
tfhe = { version = "0.5.3", features = ["integer", "x86_64-unix"]}
2828
```
2929

3030
Other configurations can be found [here](../getting_started/installation.md).

tfhe/docs/tutorials/parity_bit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This function returns a Boolean that will be either `true` or `false` so that th
1919
# Cargo.toml
2020

2121
# Default configuration for x86 Unix machines:
22-
tfhe = { version = "0.5.2", features = ["integer", "x86_64-unix"]}
22+
tfhe = { version = "0.5.3", features = ["integer", "x86_64-unix"]}
2323
```
2424

2525
Other configurations can be found [here](../getting_started/installation.md).

0 commit comments

Comments
 (0)