File tree 4 files changed +5
-10
lines changed
4 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,13 @@ jobs:
16
16
publish :
17
17
runs-on : ubuntu-latest
18
18
needs : check-version
19
- env :
20
- CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
21
19
steps :
22
20
- uses : actions/checkout@v3
23
21
- name : Publish derive crate
24
22
run : |
25
23
cd ssz_derive
26
- cargo publish
24
+ cargo publish --token "${{ secrets.CARGO_REGISTRY_TOKEN }}"
27
25
- name : Publish main crate
28
26
run : |
29
27
cd ssz
30
- cargo publish
28
+ cargo publish --token "${{ secrets.CARGO_REGISTRY_TOKEN }}"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ethereum_ssz"
3
- version = " 1.0.0-beta.0 "
3
+ version = " 1.0.0-beta.1 "
4
4
edition = " 2021"
5
5
description = " SimpleSerialize (SSZ) as used in Ethereum"
6
6
license = " Apache-2.0"
@@ -14,7 +14,7 @@ categories = ["cryptography::cryptocurrencies"]
14
14
name = " ssz"
15
15
16
16
[dev-dependencies ]
17
- ethereum_ssz_derive = { version = " 1.0.0-beta.0 " , path = " ../ssz_derive" }
17
+ ethereum_ssz_derive = { version = " 1.0.0-beta.1 " , path = " ../ssz_derive" }
18
18
19
19
[dependencies ]
20
20
ethereum-types = " 0.12.1"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ethereum_ssz_derive"
3
- version = " 1.0.0-beta.0 "
3
+ version = " 1.0.0-beta.1 "
4
4
edition = " 2021"
5
5
description = " Procedural derive macros to accompany the ethereum_ssz crate"
6
6
license = " Apache-2.0"
You can’t perform that action at this time.
0 commit comments