Skip to content

Commit 038e90a

Browse files
committed
fix: make solidity public
1 parent 3c7ecf8 commit 038e90a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "nodash"
33
type = "lib"
44
description = "A Swiss knife for Noir"
5-
version = "0.41.1"
5+
version = "0.41.2"
66
authors = ["Oleh Misarosh <olehmisar@gmail.com>"]
77
repository = "https://github.com/olehmisar/nodash"
88
keywords = ["Noir", "nodash", "util", "hash"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Nodash is a utility library for [Noir](https://github.com/noir-lang/noir) langua
77
Put this into your Nargo.toml.
88

99
```toml
10-
nodash = { git = "https://github.com/olehmisar/nodash/", tag = "v0.41.1" }
10+
nodash = { git = "https://github.com/olehmisar/nodash/", tag = "v0.41.2" }
1111
```
1212

1313
## Docs

src/lib.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
mod convert;
22
mod hash;
33
mod math;
4-
mod solidity;
4+
pub mod solidity;
55
mod string;
66
mod tables;
77
mod array;

0 commit comments

Comments
 (0)