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

chore(release): Release 0.2.14 #348

Merged
merged 1 commit into from
Aug 26, 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased](https://github.com/near/read-rpc/compare/main...develop)

## [0.2.14](https://github.com/near/read-rpc/releases/tag/v0.2.13)
### Supported Nearcore Version
- nearcore v2.1.1
- rust v1.79.0

### What's Changed
* Fix docker build

## [0.2.13](https://github.com/near/read-rpc/releases/tag/v0.2.13)
### Supported Nearcore Version
- nearcore v2.1.1
Expand Down
20 changes: 10 additions & 10 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,5 +1,5 @@
[workspace.package]
version = "0.2.13"
version = "0.2.14"
authors = ["Near Inc <hello@nearprotocol.com>"]
edition = "2021"
rust-version = "1.79.0"
Expand Down
2 changes: 1 addition & 1 deletion epoch-indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license.workspace = true

[dependencies]
anyhow = "1.0.70"
clap = "4.4.18"
clap = { version = "4.5.16", features = ["derive"] }
futures = "0.3.30"
tokio = { version = "1.36.0", features = [
"sync",
Expand Down
2 changes: 1 addition & 1 deletion near-state-indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ actix = "0.13.3"
actix-web = "4.2.1"
anyhow = "1.0.70"
borsh = "1.3.1"
clap = "4.4.18"
clap = { version = "4.5.16", features = ["derive"] }
futures = "0.3.5"
hex = "0.4.3"
humantime = "2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion state-indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license.workspace = true
actix-web = "4.2.1"
anyhow = "1.0.70"
borsh = "1.3.1"
clap = "4.4.18"
clap = { version = "4.5.16", features = ["derive"] }
futures = "0.3.5"
hex = "0.4.3"
humantime = "2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion tx-indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license.workspace = true
actix-web = "4.5.1"
anyhow = "1.0.70"
borsh = "1.3.1"
clap = "4.4.18"
clap = { version = "4.5.16", features = ["derive"] }
futures = "0.3.5"
futures-locks = "0.7.1"
humantime = "2.1.0"
Expand Down
Loading