Skip to content

Commit

Permalink
chore: update version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarlin-zama committed Nov 6, 2024
1 parent 525712d commit e2e0fbf
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 75 deletions.
85 changes: 18 additions & 67 deletions Cargo.lock

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

11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tfhe-backward-compat-data"
version = "0.3.0"
version = "0.4.0"
license = "BSD-3-Clause-Clear"
edition = "2021"

Expand All @@ -24,10 +24,10 @@ tfhe_0_10 = { version = "0.10", features = [
"x86_64-unix",
"zk-pok",
"experimental-force_fft_algo_dif4",
], package = "tfhe", optional = true, git = "https://github.com/zama-ai/tfhe-rs/", branch = "am/refactor/use-natural-decomposition-order" }
], package = "tfhe", optional = true }

tfhe_0_8-versionable = { version = "0.3", optional = true, package = "tfhe-versionable" }
tfhe_0_10-versionable = { version = "0.3", optional = true, package = "tfhe-versionable", git = "https://github.com/zama-ai/tfhe-rs/", branch = "am/refactor/use-natural-decomposition-order" }
# TFHE-rs 0.8 and 0.10 use the same version of versionable
tfhe-versionable = { version = "0.3.2", optional = true }

# other deps
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -47,7 +47,6 @@ default = ["generate"]
generate = [
"dep:tfhe_0_8",
"dep:tfhe_0_10",
"dep:tfhe_0_8-versionable",
"dep:tfhe_0_10-versionable",
"dep:tfhe-versionable",
]
load = ["dep:semver"]
4 changes: 2 additions & 2 deletions src/generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use std::{

use bincode::Options;
use serde::Serialize;
use tfhe_0_10_versionable::Versionize as VersionizeTfhe010;
use tfhe_0_8_versionable::Versionize as VersionizeTfhe08;
use tfhe_versionable::Versionize as VersionizeTfhe010;
use tfhe_versionable::Versionize as VersionizeTfhe08;

use crate::{
data_dir, dir_for_version, TestCompressionParameterSet, TestDistribution, TestMetadata,
Expand Down

0 comments on commit e2e0fbf

Please sign in to comment.