From 55da798a84c2e7ee85ade3ff9d6a145e9f4151aa Mon Sep 17 00:00:00 2001 From: refcell Date: Tue, 27 Aug 2024 20:17:01 -0400 Subject: [PATCH] fix: bump minor version --- Cargo.toml | 2 +- crates/primitives/README.md | 6 +++--- crates/registry/README.md | 4 ++-- crates/superchain/README.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 59047b8..abf5a65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.3.0" +version = "0.3.1" edition = "2021" rust-version = "1.80" authors = ["anton-rs"] diff --git a/crates/primitives/README.md b/crates/primitives/README.md index a7b54ee..2901ddd 100644 --- a/crates/primitives/README.md +++ b/crates/primitives/README.md @@ -17,19 +17,19 @@ Add the following to your `Cargo.toml`. ```toml [dependencies] -superchain-primitives = "0.2" +superchain-primitives = "0.3" ``` To disable default feature flags, disable the `default-features` field like so. ```toml -superchain-primitives = { version = "0.2", default-features = false } +superchain-primitives = { version = "0.3", default-features = false } ``` Features can then be enabled individually. ```toml -superchain-primitives = { version = "0.2", default-features = false, features = [ "std" ] } +superchain-primitives = { version = "0.3", default-features = false, features = [ "std" ] } ``` ## Example diff --git a/crates/registry/README.md b/crates/registry/README.md index 13b8cfa..a06c4a3 100644 --- a/crates/registry/README.md +++ b/crates/registry/README.md @@ -14,7 +14,7 @@ Add the following to your `Cargo.toml`. ```toml [dependencies] -superchain-registry = "0.2" +superchain-registry = "0.3" ``` To disable `std` and make `superchain-registry` `no_std` compatible, @@ -22,7 +22,7 @@ simply toggle `default-features` off. ```toml [dependencies] -superchain-registry = { version = "0.2", default-features = false } +superchain-registry = { version = "0.3", default-features = false } ``` ## Example diff --git a/crates/superchain/README.md b/crates/superchain/README.md index cbaa294..0107555 100644 --- a/crates/superchain/README.md +++ b/crates/superchain/README.md @@ -18,14 +18,14 @@ Add the following to your `Cargo.toml`. ```toml [dependencies] -superchain = "0.2" +superchain = "0.3" ``` To make make `superchain` `no_std`, toggle `default-features` off like so. ```toml [dependencies] -superchain = { version = "0.2", default-features = false } +superchain = { version = "0.3", default-features = false } ``` ## Example