Skip to content

Commit

Permalink
chore: bump version for next release (#3)
Browse files Browse the repository at this point in the history
* chore: bump version for next release

* fix: bump CI rust version to 1.81.1
  • Loading branch information
KolbyML authored Oct 30, 2024
1 parent 46da867 commit 3e8f75d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
Check linting with Clippy and rustfmt, build the crate, and run tests.
executor:
name: rust/default
tag: 1.71.1
tag: 1.81.0
environment:
RUSTFLAGS: '-D warnings'
steps:
Expand Down
11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "eth_trie"
version = "0.4.0"
authors = ["Jason Carver <ut96caarrs@snkmail.com>"]
version = "0.5.0"
authors = ["https://github.com/ethereum/eth-trie.rs/graphs/contributors"]
description = "Ethereum-compatible Merkle-Patricia Trie."
license = "Apache-2.0"
edition = "2018"
rust-version = "1.81.0"
edition = "2021"
readme = "README.md"
keywords = ["patricia", "mpt", "evm", "trie", "ethereum"]
repository = "https://github.com/carver/eth-trie.rs"
homepage = "https://github.com/carver/eth-trie.rs"
repository = "https://github.com/ethereum/eth-trie.rs"
homepage = "https://github.com/ethereum/eth-trie.rs"
documentation = "https://docs.rs/eth_trie"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## eth-trie

[![Latest Version](https://img.shields.io/crates/v/eth_trie.svg)](https://crates.io/crates/eth_trie)
[![](https://img.shields.io/hexpm/l/plug.svg)](https://github.com/carver/eth-trie.rs/blob/master/LICENSE)
[![CircleCI](https://circleci.com/gh/carver/eth-trie.rs/tree/master.svg?style=svg)](https://circleci.com/gh/carver/eth-trie.rs/tree/master)
[![](https://img.shields.io/hexpm/l/plug.svg)](https://github.com/ethereum/eth-trie.rs/blob/master/LICENSE)
[![CircleCI](https://circleci.com/gh/ethereum/eth-trie.rs/tree/master.svg?style=svg)](https://circleci.com/gh/ethereum/eth-trie.rs/tree/master)

Rust implementation of the Merkle-Patricia Trie, used by Ethereum.

Expand Down Expand Up @@ -105,4 +105,4 @@ See: https://crates.io/crates/hasher

### Custom storage

[Refer](https://github.com/carver/eth-trie.rs/blob/master/src/db.rs)
[Refer](https://github.com/ethereum/eth-trie.rs/blob/master/src/db.rs)

0 comments on commit 3e8f75d

Please sign in to comment.