Skip to content

Commit c94e0ad

Browse files
Release v1.0.0-beta.1 (#1)
1 parent d414783 commit c94e0ad

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

.github/workflows/release.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,13 @@ jobs:
1616
publish:
1717
runs-on: ubuntu-latest
1818
needs: check-version
19-
env:
20-
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
2119
steps:
2220
- uses: actions/checkout@v3
2321
- name: Publish derive crate
2422
run: |
2523
cd ssz_derive
26-
cargo publish
24+
cargo publish --token "${{ secrets.CARGO_REGISTRY_TOKEN }}"
2725
- name: Publish main crate
2826
run: |
2927
cd ssz
30-
cargo publish
28+
cargo publish --token "${{ secrets.CARGO_REGISTRY_TOKEN }}"

ssz/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethereum_ssz"
3-
version = "1.0.0-beta.0"
3+
version = "1.0.0-beta.1"
44
edition = "2021"
55
description = "SimpleSerialize (SSZ) as used in Ethereum"
66
license = "Apache-2.0"
@@ -14,7 +14,7 @@ categories = ["cryptography::cryptocurrencies"]
1414
name = "ssz"
1515

1616
[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" }
1818

1919
[dependencies]
2020
ethereum-types = "0.12.1"

ssz/README.md

-3
This file was deleted.

ssz_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethereum_ssz_derive"
3-
version = "1.0.0-beta.0"
3+
version = "1.0.0-beta.1"
44
edition = "2021"
55
description = "Procedural derive macros to accompany the ethereum_ssz crate"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)