Skip to content

Commit 8707234

Browse files
committed
chore(ci): bump version to 0.7.4
1 parent 61794d4 commit 8707234

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

tfhe/docs/fundamentals/serialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Here is a full example:
1515

1616
[dependencies]
1717
# ...
18-
tfhe = { version = "0.7.3", features = ["integer","x86_64-unix"]}
18+
tfhe = { version = "0.7.4", features = ["integer","x86_64-unix"]}
1919
bincode = "1.3.3"
2020
```
2121

tfhe/docs/getting_started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ First, add **TFHE-rs** as a dependency in your `Cargo.toml`.
99
**For `x86_64` machine running a Unix-like OS:**
1010

1111
```toml
12-
tfhe = { version = "0.7.3", features = [ "boolean", "shortint", "integer", "x86_64-unix" ] }
12+
tfhe = { version = "0.7.4", features = [ "boolean", "shortint", "integer", "x86_64-unix" ] }
1313
```
1414

1515
**For `ARM` machine running a Unix-like OS:**
1616

1717
```toml
18-
tfhe = { version = "0.7.3", features = [ "boolean", "shortint", "integer", "aarch64-unix" ] }
18+
tfhe = { version = "0.7.4", features = [ "boolean", "shortint", "integer", "aarch64-unix" ] }
1919
```
2020

2121
**For `x86_64` machines with the** [**`rdseed instruction`**](https://en.wikipedia.org/wiki/RDRAND) **running Windows:**

tfhe/docs/getting_started/quick_start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ fn main() {
4747
The default configuration for x86 Unix machines is as follows:
4848

4949
```toml
50-
tfhe = { version = "0.7.3", features = ["integer", "x86_64-unix"]}
50+
tfhe = { version = "0.7.4", features = ["integer", "x86_64-unix"]}
5151
```
5252

5353
Refer to the [installation documentation](installation.md) for configuration options of different platforms.Learn more about homomorphic types features in the [configuration documentation.](../guides/rust\_configuration.md)

tfhe/docs/guides/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 = "0.7.3", features = ["integer","x86_64-unix"]}
19+
tfhe = { version = "0.7.4", features = ["integer","x86_64-unix"]}
2020
tfhe-versionable = "0.2.0"
2121
bincode = "1.3.3"
2222
```

tfhe/docs/guides/run_on_gpu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ To use the **TFHE-rs** GPU backend in your project, add the following dependency
1919
If you are using an `x86` machine:
2020

2121
```toml
22-
tfhe = { version = "0.7.3", features = [ "boolean", "shortint", "integer", "x86_64-unix", "gpu" ] }
22+
tfhe = { version = "0.7.4", features = [ "boolean", "shortint", "integer", "x86_64-unix", "gpu" ] }
2323
```
2424

2525
If you are using an `ARM` machine:
2626

2727
```toml
28-
tfhe = { version = "0.7.3", features = [ "boolean", "shortint", "integer", "aarch64-unix", "gpu" ] }
28+
tfhe = { version = "0.7.4", features = [ "boolean", "shortint", "integer", "aarch64-unix", "gpu" ] }
2929
```
3030

3131
{% hint style="success" %}

tfhe/docs/references/core-crypto-api/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.7.3", features = [ "x86_64-unix" ] }
12+
tfhe = { version = "0.7.4", 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.7.3", features = ["x86_64-unix"] }
22+
tfhe = { version = "0.7.4", 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.7.3", features = ["aarch64-unix"] }
28+
tfhe = { version = "0.7.4", 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.7.3", features = ["x86_64"] }
34+
tfhe = { version = "0.7.4", 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/tutorials/ascii_fhe_string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To use the `FheUint8` type, enable the `integer` feature:
2525

2626
[dependencies]
2727
# Default configuration for x86 Unix machines:
28-
tfhe = { version = "0.7.3", features = ["integer", "x86_64-unix"]}
28+
tfhe = { version = "0.7.4", features = ["integer", "x86_64-unix"]}
2929
```
3030

3131
Refer to the [installation guide](../getting\_started/installation.md) for other configurations.

tfhe/docs/tutorials/parity_bit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This function returns a Boolean (`true` or `false`) so that the total count of `
1818
# Cargo.toml
1919

2020
# Default configuration for x86 Unix machines:
21-
tfhe = { version = "0.7.3", features = ["integer", "x86_64-unix"]}
21+
tfhe = { version = "0.7.4", features = ["integer", "x86_64-unix"]}
2222
```
2323

2424
Refer to the [installation](../getting\_started/installation.md) for other configurations.

0 commit comments

Comments
 (0)