Skip to content

Commit fb7a95f

Browse files
committed
chore(tfhe): revert deprecation warning bump
1 parent 0da0bfd commit fb7a95f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tfhe/src/high_level_api/backward_compatibility/booleans.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub enum CompactFheBoolListVersions {
3939

4040
#[derive(Versionize)]
4141
#[versionize(CompactFheBoolVersions)]
42-
#[deprecated(since = "0.7.1", note = "Use CompactCiphertextList instead")]
42+
#[deprecated(since = "0.7.0", note = "Use CompactCiphertextList instead")]
4343
pub struct CompactFheBool {
4444
pub(in crate::high_level_api) list: CompactCiphertextList,
4545
}
@@ -71,7 +71,7 @@ impl CompactFheBool {
7171

7272
#[derive(Versionize)]
7373
#[versionize(CompactFheBoolListVersions)]
74-
#[deprecated(since = "0.7.1", note = "Use CompactCiphertextList instead")]
74+
#[deprecated(since = "0.7.0", note = "Use CompactCiphertextList instead")]
7575
pub struct CompactFheBoolList {
7676
list: CompactCiphertextList,
7777
}

tfhe/src/high_level_api/backward_compatibility/integers.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ pub enum CompactFheUintListVersions<Id: FheUintId> {
168168

169169
#[derive(Clone, Versionize)]
170170
#[versionize(CompactFheIntVersions)]
171-
#[deprecated(since = "0.7.1", note = "Use CompactCiphertextList instead")]
171+
#[deprecated(since = "0.7.0", note = "Use CompactCiphertextList instead")]
172172
pub struct CompactFheInt<Id: FheIntId> {
173173
list: CompactCiphertextList,
174174
id: Id,
@@ -198,7 +198,7 @@ where
198198

199199
#[derive(Clone, Versionize)]
200200
#[versionize(CompactFheIntListVersions)]
201-
#[deprecated(since = "0.7.1", note = "Use CompactCiphertextList instead")]
201+
#[deprecated(since = "0.7.0", note = "Use CompactCiphertextList instead")]
202202
pub struct CompactFheIntList<Id: FheIntId> {
203203
list: CompactCiphertextList,
204204
id: Id,
@@ -235,7 +235,7 @@ where
235235

236236
#[derive(Clone, Versionize)]
237237
#[versionize(CompactFheUintVersions)]
238-
#[deprecated(since = "0.7.1", note = "Use CompactCiphertextList instead")]
238+
#[deprecated(since = "0.7.0", note = "Use CompactCiphertextList instead")]
239239
pub struct CompactFheUint<Id: FheUintId> {
240240
list: CompactCiphertextList,
241241
id: Id,
@@ -266,7 +266,7 @@ where
266266

267267
#[derive(Clone, Versionize)]
268268
#[versionize(CompactFheUintListVersions)]
269-
#[deprecated(since = "0.7.1", note = "Use CompactCiphertextList instead")]
269+
#[deprecated(since = "0.7.0", note = "Use CompactCiphertextList instead")]
270270
pub struct CompactFheUintList<Id: FheUintId> {
271271
list: CompactCiphertextList,
272272
id: Id,

0 commit comments

Comments
 (0)