File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11
2- # 0.1.2 (12 June, 2022)
2+ # 0.1.3 (13 June, 2022)
33
44- Fix out-of-bounds reading of bytes during ABI decoding [[ GH-205 ] ( https://github.com/umbracle/ethgo/issues/205 )]
55- Update ` fastrlp ` to ` 59d5dd3 ` commit to fix a bug on bytes length check [[ GH-204 ] ( https://github.com/umbracle/ethgo/issues/204 )]
6+ - Fix out-of-bounds RLP unmarshal of transactions [[ GH-203 ] ( https://github.com/umbracle/ethgo/issues/203 )]
7+
8+ # 0.1.2 (5 May, 2022)
9+
610- Update ` btcd ` library to new ` v0.22.1 `
711- Add option in ` contract ` to send transactions with EIP-1559 [[ GH-198 ] ( https://github.com/umbracle/ethgo/issues/198 )]
812- Add custom ` TxnOpts ` to send a transaction in ` contract ` [[ GH-195 ] ( https://github.com/umbracle/ethgo/issues/195 )]
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ require (
3535 github.com/mitchellh/reflectwalk v1.0.0 // indirect
3636 github.com/posener/complete v1.1.1 // indirect
3737 github.com/tyler-smith/go-bip39 v1.1.0 // indirect
38- github.com/umbracle/fastrlp v0.0.0-20211229195328-c1416904ae17 // indirect
38+ github.com/umbracle/fastrlp v0.0.0-20220527094140-59d5dd30e722 // indirect
3939 github.com/valyala/bytebufferpool v1.0.0 // indirect
4040 github.com/valyala/fasthttp v1.4.0 // indirect
4141 github.com/valyala/fastjson v1.4.1 // indirect
Original file line number Diff line number Diff line change @@ -140,8 +140,8 @@ github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd
140140github.com/stretchr/testify v1.6.1 /go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg =
141141github.com/tyler-smith/go-bip39 v1.1.0 h1:5eUemwrMargf3BSLRRCalXT93Ns6pQJIjYQN2nyfOP8 =
142142github.com/tyler-smith/go-bip39 v1.1.0 /go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U =
143- github.com/umbracle/fastrlp v0.0.0-20211229195328-c1416904ae17 h1:ZZy8Rj2SqGcZn1hTcoLdwFBROzrf5KiuRwhp8G4nnfA =
144- github.com/umbracle/fastrlp v0.0.0-20211229195328-c1416904ae17 /go.mod h1:c8J0h9aULj2i3umrfyestM6jCq0LK0U6ly6bWy96nd4 =
143+ github.com/umbracle/fastrlp v0.0.0-20220527094140-59d5dd30e722 h1:10Nbw6cACsnQm7r34zlpJky+IzxVLRk6MKTS2d3Vp0E =
144+ github.com/umbracle/fastrlp v0.0.0-20220527094140-59d5dd30e722 /go.mod h1:c8J0h9aULj2i3umrfyestM6jCq0LK0U6ly6bWy96nd4 =
145145github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw =
146146github.com/valyala/bytebufferpool v1.0.0 /go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc =
147147github.com/valyala/fasthttp v1.4.0 h1:PuaTGZIw3mjYhhhbVbCQp8aciRZN9YdoB7MGX9Ko76A =
Original file line number Diff line number Diff line change 77 GitCommit string
88
99 // Version is the main version at the moment.
10- Version = "0.1.2 "
10+ Version = "0.1.3 "
1111
1212 // VersionPrerelease is a marker for the version.
1313 VersionPrerelease = ""
Original file line number Diff line number Diff line change @@ -107,8 +107,6 @@ github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJy
107107github.com/stretchr/testify v1.4.0 /go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4 =
108108github.com/tyler-smith/go-bip39 v1.1.0 h1:5eUemwrMargf3BSLRRCalXT93Ns6pQJIjYQN2nyfOP8 =
109109github.com/tyler-smith/go-bip39 v1.1.0 /go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U =
110- github.com/umbracle/fastrlp v0.0.0-20211229195328-c1416904ae17 h1:ZZy8Rj2SqGcZn1hTcoLdwFBROzrf5KiuRwhp8G4nnfA =
111- github.com/umbracle/fastrlp v0.0.0-20211229195328-c1416904ae17 /go.mod h1:c8J0h9aULj2i3umrfyestM6jCq0LK0U6ly6bWy96nd4 =
112110github.com/umbracle/fastrlp v0.0.0-20220527094140-59d5dd30e722 h1:10Nbw6cACsnQm7r34zlpJky+IzxVLRk6MKTS2d3Vp0E =
113111github.com/umbracle/fastrlp v0.0.0-20220527094140-59d5dd30e722 /go.mod h1:c8J0h9aULj2i3umrfyestM6jCq0LK0U6ly6bWy96nd4 =
114112github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw =
You can’t perform that action at this time.
0 commit comments