-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
35 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,11 @@ | |
|
||
# Solidity Bytes Arrays Utils | ||
|
||
Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. | ||
Bytes tightly packed arrays' utility library for ethereum contracts written in Solidity. | ||
|
||
The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. | ||
|
||
Given this library has an all-internal collection of methods it doesn't make sense having it reside in the mainnet. Instead it will only be available in EPM as an installable package. | ||
Given this library has an all-internal collection of methods it doesn't make sense to have it reside in the mainnet. Instead it will only be available on EPM as an installable package. | ||
|
||
## Important Fixes Changelog | ||
|
||
|
@@ -34,6 +34,17 @@ This made me realize that in permissioned blockchains where gas is also not a li | |
|
||
## _Version Notes_: | ||
|
||
* Starting from version `v0.8.0` the versioning will change to follow compatible Solidity's compiler versions. | ||
This means that now the library will only compile on Solidity versions `>=0.8.0` so, if you need `<0.8.0` support for your project just use `v0.1.2` of the library with: | ||
|
||
``` | ||
$ truffle install [email protected] | ||
``` | ||
or | ||
``` | ||
$ npm install [email protected] | ||
``` | ||
|
||
* Version `v0.1.2` has a major bug fix. | ||
|
||
* Version `v0.1.1` has a critical bug fix. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"package_name": "bytes", | ||
"version": "0.1.2", | ||
"version": "0.8.0", | ||
"description": "Solidity bytes tightly packed arrays utility library.", | ||
"authors": [ | ||
"Gonçalo Sá <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters