Skip to content

Commit

Permalink
fix: bump minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Aug 28, 2024
1 parent 297b847 commit 55da798
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.3.0"
version = "0.3.1"
edition = "2021"
rust-version = "1.80"
authors = ["anton-rs"]
Expand Down
6 changes: 3 additions & 3 deletions crates/primitives/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crates/registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ 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,
simply toggle `default-features` off.

```toml
[dependencies]
superchain-registry = { version = "0.2", default-features = false }
superchain-registry = { version = "0.3", default-features = false }
```

## Example
Expand Down
4 changes: 2 additions & 2 deletions crates/superchain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 55da798

Please sign in to comment.