Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: version bump #80

Merged
merged 2 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "superchain"
description = "The Superchain Registry"
version = "0.7.1"
version = "0.8.0"
edition = "2021"
rust-version = "1.80"
authors = ["refcell", "clabby"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ various chains into instantiated objects, the [`superchain`][sc] crate requires
as a dependency to a `Cargo.toml`.

```toml
superchain = "0.7"
superchain = "0.8"
```

[`superchain`][sc] declares lazy evaluated statics that expose `ChainConfig`s, `RollupConfig`s,
Expand Down Expand Up @@ -75,14 +75,14 @@ Add the following to your `Cargo.toml`.

```toml
[dependencies]
superchain = "0.7"
superchain = "0.8"
```

To make `superchain` `no_std`, toggle `default-features` off like so.

```toml
[dependencies]
superchain = { version = "0.7", default-features = false }
superchain = { version = "0.8", default-features = false }
```

Below demonstrates getting the `RollupConfig` for OP Mainnet (Chain ID `10`).
Expand Down