From 7f315e36c3dbfffae13e2d26287077b0caebc9bd Mon Sep 17 00:00:00 2001 From: Gustavo Inacio Date: Thu, 6 Jun 2024 14:20:47 -0300 Subject: [PATCH] chore: release candidate 1.0.0 (#202) * chore: release candidate 1.0.0 Signed-off-by: Gustavo Inacio * chore(config): release 1.0.0-rc.1 Signed-off-by: Gustavo Inacio --------- Signed-off-by: Gustavo Inacio --- config/Cargo.toml | 2 +- service/Cargo.toml | 2 +- tap-agent/Cargo.toml | 26 +++++++++++++------------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/config/Cargo.toml b/config/Cargo.toml index 39d1c5a4..aaa77027 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-config" -version = "0.1.0" +version = "1.0.0-rc.1" edition = "2021" [dependencies] diff --git a/service/Cargo.toml b/service/Cargo.toml index 73437368..0fbd6abe 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "service" -version = "1.0.0-alpha.0" +version = "1.0.0-rc.1" edition = "2021" license = "Apache-2.0" diff --git a/tap-agent/Cargo.toml b/tap-agent/Cargo.toml index 30b25469..1bf123e3 100644 --- a/tap-agent/Cargo.toml +++ b/tap-agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-tap-agent" -version = "0.1.0" +version = "1.0.0-rc.1" edition = "2021" publish = false @@ -21,8 +21,8 @@ log = "0.4.19" prometheus = "0.13.3" axum = "0.7.5" futures-util = "0.3.28" -indexer-common = { version = "0.1.0", path = "../common" } -indexer-config = { version = "0.1.0", path = "../config" } +indexer-common = { path = "../common" } +indexer-config = { path = "../config" } jsonrpsee = { version = "0.20.2", features = ["http-client", "macros"] } lazy_static = "1.4.0" reqwest = "0.12" @@ -30,11 +30,11 @@ serde = "1.0.188" serde_json = "1.0.104" serde_yaml = "0.9.25" sqlx = { version = "0.7.2", features = [ - "postgres", - "runtime-tokio", - "bigdecimal", - "rust_decimal", - "chrono", + "postgres", + "runtime-tokio", + "bigdecimal", + "rust_decimal", + "chrono", ] } tap_aggregator = "0.3.0" tap_core = "0.8.0" @@ -43,11 +43,11 @@ tokio = { version = "1.33.0" } thegraph = { git = "https://github.com/edgeandnode/toolshed", tag = "thegraph-v0.5.0" } tracing = "0.1.37" tracing-subscriber = { version = "0.3", features = [ - "env-filter", - "ansi", - "fmt", - "std", - "json", + "env-filter", + "ansi", + "fmt", + "std", + "json", ] } ractor = "0.9"