Skip to content

Commit

Permalink
Bump version before release
Browse files Browse the repository at this point in the history
  • Loading branch information
tlepoint committed Feb 3, 2024
1 parent a9f2a37 commit 7d2e6ad
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 31 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ authors = ["Tancrède Lepoint"]
documentation = "https://fhe.rs"
edition = "2021"
repository = "https://github.com/tlepoint/fhe.rs"
version = "0.1.0-beta.7"
version = "0.1.0-beta.8"
license-file = "LICENSE"
rust-version = "1.73"

[workspace.dependencies]
console = "0.15.8"
criterion = "0.5.1"
doc-comment = "0.3.3"
ethnum = "1.5.0"
indicatif = "0.17.7"
itertools = "0.12.1"
ndarray = "0.15.6"
num-bigint = "0.4.4"
num-bigint-dig = "0.8.4"
num-traits = "0.2.17"
proptest = "1.4.0"
prost = "0.12.3"
prost-build = "0.12.3"
rand = "0.8.5"
rand_chacha = "0.3.1"
sha2 = "0.10.8"
thiserror = "1.0.56"
zeroize = "1.7.0"
zeroize_derive = "1.4.2"
console = "^0.15.8"
criterion = "^0.5.1"
doc-comment = "^0.3.3"
ethnum = "^1.5.0"
indicatif = "^0.17.7"
itertools = "^0.12.1"
ndarray = "^0.15.6"
num-bigint = "^0.4.4"
num-bigint-dig = "^0.8.4"
num-traits = "^0.2.17"
proptest = "^1.4.0"
prost = "^0.12.3"
prost-build = "^0.12.3"
rand = "^0.8.5"
rand_chacha = "^0.3.1"
sha2 = "^0.10.8"
thiserror = "^1.0.56"
zeroize = "^1.7.0"
zeroize_derive = "^1.4.2"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ To install, add the following to your project's `Cargo.toml` file:

```toml
[dependencies]
fhe = "0.1.0-beta.7"
fhe-traits = "0.1.0-beta.7"
fhe = "0.1.0-beta.8"
fhe-traits = "0.1.0-beta.8"
```

## Minimum supported version / toolchain
Expand Down
4 changes: 2 additions & 2 deletions crates/fhe-math/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ rust-version.workspace = true
bench = false # Disable default bench (we use criterion)

[dependencies]
fhe-traits = { version = "^0.1.0-beta.7", path = "../fhe-traits" }
fhe-util = { version = "^0.1.0-beta.7", path = "../fhe-util" }
fhe-traits = { version = "^0.1.0-beta.8", path = "../fhe-traits" }
fhe-util = { version = "^0.1.0-beta.8", path = "../fhe-util" }

ethnum.workspace = true
itertools.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/fhe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ rust-version.workspace = true
bench = false # Disable default bench (we use criterion)

[dependencies]
fhe-math = { version = "^0.1.0-beta.7", path = "../fhe-math" }
fhe-traits = { version = "^0.1.0-beta.7", path = "../fhe-traits" }
fhe-util = { version = "^0.1.0-beta.7", path = "../fhe-util" }
fhe-math = { version = "^0.1.0-beta.8", path = "../fhe-math" }
fhe-traits = { version = "^0.1.0-beta.8", path = "../fhe-traits" }
fhe-util = { version = "^0.1.0-beta.8", path = "../fhe-util" }

doc-comment.workspace = true
itertools.workspace = true
Expand Down

0 comments on commit 7d2e6ad

Please sign in to comment.