Skip to content

Commit

Permalink
Merge pull request #53 from ralexstokes/release/v0.8
Browse files Browse the repository at this point in the history
Release: v0.8
  • Loading branch information
ralexstokes authored Apr 11, 2023
2 parents 688a823 + bb0e155 commit fedcd22
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
14 changes: 2 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ssz-rs ✂️️

[![build](https://github.com/ralexstokes/ssz-rs/actions/workflows/rust.yml/badge.svg?branch=main)](https://github.com/ralexstokes/ssz-rs/actions/workflows/rust.yml)
[![crates.io](https://img.shields.io/crates/v/ssz_rs.svg)](https://crates.io/crates/ssz_rs)
[![docs.rs](https://img.shields.io/docsrs/ssz-rs)](https://docs.rs/ssz-rs/)

An implementation of the `SSZ` serialization scheme defined in the [consensus-specs repo](https://github.com/ethereum/consensus-specs).

Expand Down Expand Up @@ -46,15 +48,3 @@ ssz-rs = { version = "...", default-features = false }
This repo includes a copy of the [`ssz_generic` consensus spec tests](https://github.com/ethereum/consensus-spec-tests) as integration tests for the `ssz_rs` crate.
The tests are generated from a local clone of the spec tests repo and the generator script under `ssz_rs/scripts`.
Refer to the README there if you need to update/change these tests.

# Versioning

This library is still very much in flux so I suggest using the git remote feature of cargo to use this as a dependency for now.

Once things settle down, a version bump will be published to `crates.io`.

This means the following badges refer to **outdated** software. This message will be removed when this is no longer the case.

[![crates.io](https://img.shields.io/crates/v/ssz_rs.svg)](https://crates.io/crates/ssz_rs)
[![crates.io](https://img.shields.io/crates/v/ssz_rs_derive.svg)](https://crates.io/crates/ssz_rs_derive)
[![docs.rs](https://img.shields.io/docsrs/ssz-rs)](https://docs.rs/ssz-rs/)
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build:
cargo build --all-targets --all-features
build-no-std:
cargo build --no-default-features
run-ci: lint build test
run-ci: lint build build-no-std test
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.67"
channel = "1.68.2"
1 change: 0 additions & 1 deletion ssz-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "ssz-rs"
version = "0.8.0"
rust-version = "1.60"
authors = ["Alex Stokes <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit fedcd22

Please sign in to comment.