Skip to content

Commit 75d7865

Browse files
committed
chore(tfhe): bump version to 0.1.12
1 parent 343e0f1 commit 75d7865

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.1.11"
3+
version = "0.1.12"
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`, first it has to be added as a dependency in the `Cargo.toml`:
1010

1111
```toml
12-
tfhe = { version = "0.1.11", features = [ "x86_64-unix" ] }
12+
tfhe = { version = "0.1.12", features = [ "x86_64-unix" ] }
1313
```
1414

1515
Here, 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 actived 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.
@@ -20,19 +20,19 @@ In short:
2020
For x86_64-based machines running Unix-like OSes:
2121

2222
```toml
23-
tfhe = { version = "0.1.11", features = ["x86_64-unix"] }
23+
tfhe = { version = "0.1.12", features = ["x86_64-unix"] }
2424
```
2525

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

2828
```toml
29-
tfhe = { version = "0.1.11", features = ["aarch64-unix"] }
29+
tfhe = { version = "0.1.12", features = ["aarch64-unix"] }
3030
```
3131

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

3434
```toml
35-
tfhe = { version = "0.1.11", features = ["x86_64"] }
35+
tfhe = { version = "0.1.12", features = ["x86_64"] }
3636
```
3737

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

tfhe/docs/getting_started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
To use `TFHE-rs` in your project, you first need to add it as a dependency in your `Cargo.toml`:
66

77
```toml
8-
tfhe = { version = "0.1.11", features = [ "boolean", "shortint", "x86_64-unix" ] }
8+
tfhe = { version = "0.1.12", features = [ "boolean", "shortint", "x86_64-unix" ] }
99
```
1010

1111
## Choosing your features

0 commit comments

Comments
 (0)