Skip to content

Commit

Permalink
chore: update to Noir 0.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olehmisar committed Nov 27, 2024
1 parent 727116e commit 52e088e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [0.38.0]
toolchain: [0.39.0]
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Install Nargo
uses: noir-lang/noirup@v0.1.3
with:
toolchain: 0.38.0
toolchain: 0.39.0

- name: Run formatter
run: nargo fmt --check
2 changes: 1 addition & 1 deletion Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
name = "nodash"
type = "lib"
authors = ["Oleh Misarosh <olehmisar@gmail.com>"]
compiler_version = ">=0.38.0"
compiler_version = ">=0.39.0"

[dependencies]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ Put this into your Nargo.toml.
If you are using Noir:

```toml
nodash = { git = "https://github.com/olehmisar/nodash/", tag = "v0.38.0" }
nodash = { git = "https://github.com/olehmisar/nodash/", tag = "v0.39.0" }
```

The version of nodash matches the version of Noir. The patch version may be different if a bugfix or a new feature is added for the same version of Noir. E.g., nodash@v0.38.0 and nodash@v0.38.1 are compatible with noir@v0.38.0.
The version of nodash matches the version of Noir. The patch version may be different if a bugfix or a new feature is added for the same version of Noir. E.g., nodash@v0.39.0 and nodash@v0.39.1 are compatible with noir@v0.39.0.

## Docs

Expand Down
5 changes: 0 additions & 5 deletions src/lib.nr
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,3 @@ trait ArrayExtensions<T, let N: u32> {
fn pad_start<let M: u32>(self, pad_value: T) -> [T; M];
fn pad_end<let M: u32>(self, pad_value: T) -> [T; M];
}

#[deprecated]
pub fn array_concat<T, let L1: u32, let L2: u32>(a: [T; L1], b: [T; L2]) -> [T; L1 + L2] {
a.concat(b)
}

0 comments on commit 52e088e

Please sign in to comment.