Skip to content

Commit 60385f1

Browse files
committed
chore(tfhe): bump version to 0.2.3
1 parent 7c8926b commit 60385f1

File tree

5 files changed

+10
-10
lines changed

5 files changed

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

1111
```toml
12-
tfhe = { version = "0.2.2", features = [ "x86_64-unix" ] }
12+
tfhe = { version = "0.2.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.2.2", features = ["x86_64-unix"] }
22+
tfhe = { version = "0.2.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.2.2", features = ["aarch64-unix"] }
28+
tfhe = { version = "0.2.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.2.2", features = ["x86_64"] }
34+
tfhe = { version = "0.2.3", features = ["x86_64"] }
3535
```
3636

3737
### 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.2.2", features = [ "boolean", "shortint", "integer", "x86_64-unix" ] }
8+
tfhe = { version = "0.2.3", features = [ "boolean", "shortint", "integer", "x86_64-unix" ] }
99
```
1010

1111
{% hint style="info" %}

tfhe/docs/high_level_api/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.2.2", features = ["integer","x86_64-unix"]}
14+
tfhe = { version = "0.2.3", features = ["integer","x86_64-unix"]}
1515
bincode = "1.3.3"
1616
```
1717

tfhe/docs/high_level_api/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fn main() {
4646

4747
Default configuration for x86 Unix machines:
4848
```toml
49-
tfhe = { version = "0.2.2", features = ["integer", "x86_64-unix"]}
49+
tfhe = { version = "0.2.3", features = ["integer", "x86_64-unix"]}
5050
```
5151

5252
Other configurations can be found [here](../getting_started/installation.md).
@@ -190,7 +190,7 @@ To use the `FheUint8` type, the `integer` feature must be activated:
190190

191191
[dependencies]
192192
# Default configuration for x86 Unix machines:
193-
tfhe = { version = "0.2.2", features = ["integer", "x86_64-unix"]}
193+
tfhe = { version = "0.2.3", features = ["integer", "x86_64-unix"]}
194194
```
195195

196196
Other configurations can be found [here](../getting_started/installation.md).
@@ -319,7 +319,7 @@ To use Booleans, the `booleans` feature in our Cargo.toml must be enabled:
319319
# Cargo.toml
320320

321321
# Default configuration for x86 Unix machines:
322-
tfhe = { version = "0.2.2", features = ["boolean", "x86_64-unix"]}
322+
tfhe = { version = "0.2.3", features = ["boolean", "x86_64-unix"]}
323323
```
324324

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

0 commit comments

Comments
 (0)