From f8534bd6df8a9e36408c3bfeae42587e15c5d0b1 Mon Sep 17 00:00:00 2001 From: theforager <0xforager@gmail.com> Date: Fri, 24 Nov 2023 10:41:04 -0600 Subject: [PATCH 1/3] Update compiler version for >19 compatibility --- Nargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nargo.toml b/Nargo.toml index d949958..53c1feb 100644 --- a/Nargo.toml +++ b/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "noir_array_helpers" authors = ["@colinnielsen"] -compiler_version = "0.10.0" +compiler_version = ">=0.10.0" notes = "AMDG" type = "lib" From 460f024c8633081a80bf402ac1b93704ddd096ef Mon Sep 17 00:00:00 2001 From: theforager <0xforager@gmail.com> Date: Fri, 24 Nov 2023 10:41:58 -0600 Subject: [PATCH 2/3] Fix u64 overflow error in test --- src/lib.nr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.nr b/src/lib.nr index 423b78c..e03b60a 100644 --- a/src/lib.nr +++ b/src/lib.nr @@ -150,7 +150,7 @@ fn u64_4_to_u8_32_unconstrained( #[test] fn test_u64_4_to_u8_32() { let hash: [u64; 4] = [ - 19446391870127103306, + 999647796417551690, 8840109498736861078, 9734560624431998397, 1906500004718046581 From 35c4c8691c0f60b1ea60738bab280261df8dc765 Mon Sep 17 00:00:00 2001 From: theforager <0xforager@gmail.com> Date: Fri, 24 Nov 2023 11:57:18 -0600 Subject: [PATCH 3/3] build: update req compiler to 0.19.0 --- Nargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nargo.toml b/Nargo.toml index 53c1feb..70d0d5f 100644 --- a/Nargo.toml +++ b/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "noir_array_helpers" authors = ["@colinnielsen"] -compiler_version = ">=0.10.0" +compiler_version = ">=0.19.0" notes = "AMDG" type = "lib"