diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cc4c323..f3fd0f3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Release on: push: branches: - - master + - main jobs: release-please: @@ -15,7 +15,6 @@ jobs: steps: - name: Run release-please id: release - uses: google-github-actions/release-please-action@v3 + uses: googleapis/release-please-action@v4 with: - token: ${{ secrets.GITHUB_TOKEN }} - command: manifest \ No newline at end of file + token: ${{ secrets.NOIR_RELEASES_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6209288..d3fc7cd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ on: env: CARGO_TERM_COLOR: always - MINIMUM_NOIR_VERSION: v1.0.0-beta.4 + MINIMUM_NOIR_VERSION: v1.0.0-beta.19 jobs: noir-version-list: diff --git a/Nargo.toml b/Nargo.toml index 0a5fa61..98ac16e 100644 --- a/Nargo.toml +++ b/Nargo.toml @@ -5,4 +5,4 @@ authors = [""] compiler_version = ">=0.36.0" [dependencies] -sort = { tag = "v0.3.0", git = "https://github.com/noir-lang/noir_sort" } +sort = { tag = "v0.4.0", git = "https://github.com/noir-lang/noir_sort" } diff --git a/src/lib.nr b/src/lib.nr index 31a2bc1..7ee3806 100644 --- a/src/lib.nr +++ b/src/lib.nr @@ -1,5 +1,5 @@ mod mut_sparse_array; -use dep::sort::sort_advanced; +use ::sort::sort_advanced; unconstrained fn __sort(lhs: u32, rhs: u32) -> bool { // lhs.lt(rhs) diff --git a/src/mut_sparse_array.nr b/src/mut_sparse_array.nr index 241f7a7..3f3f41b 100644 --- a/src/mut_sparse_array.nr +++ b/src/mut_sparse_array.nr @@ -1,5 +1,5 @@ use crate::{MutSparseArray, MutSparseArrayBase, U32RangeTraits}; -use dep::sort::sort_advanced; +use ::sort::sort_advanced; unconstrained fn __sort(lhs: u32, rhs: u32) -> bool { lhs < rhs }