Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
branches:
- master
- main

jobs:
release-please:
Expand All @@ -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
token: ${{ secrets.NOIR_RELEASES_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion src/lib.nr
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/mut_sparse_array.nr
Original file line number Diff line number Diff line change
@@ -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
}
Expand Down
Loading