diff --git a/Cargo.lock b/Cargo.lock index f928da9d..50ba07fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6389,7 +6389,7 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "subvt-app-service" -version = "0.2.0" +version = "0.3.0" dependencies = [ "actix-http", "actix-rt", @@ -6417,7 +6417,7 @@ dependencies = [ [[package]] name = "subvt-block-processor" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-lock", @@ -6442,7 +6442,7 @@ dependencies = [ [[package]] name = "subvt-config" -version = "0.2.0" +version = "0.3.0" dependencies = [ "config", "serde", @@ -6450,7 +6450,7 @@ dependencies = [ [[package]] name = "subvt-governance" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "lazy_static", @@ -6463,7 +6463,7 @@ dependencies = [ [[package]] name = "subvt-logging" -version = "0.2.0" +version = "0.3.0" dependencies = [ "env_logger", "log", @@ -6472,7 +6472,7 @@ dependencies = [ [[package]] name = "subvt-metrics" -version = "0.2.0" +version = "0.3.0" dependencies = [ "env_logger", "log", @@ -6486,7 +6486,7 @@ dependencies = [ [[package]] name = "subvt-network-status-server" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -6511,7 +6511,7 @@ dependencies = [ [[package]] name = "subvt-network-status-updater" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -6533,7 +6533,7 @@ dependencies = [ [[package]] name = "subvt-nft" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "lazy_static", @@ -6545,7 +6545,7 @@ dependencies = [ [[package]] name = "subvt-notification-generator" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-lock", @@ -6571,7 +6571,7 @@ dependencies = [ [[package]] name = "subvt-notification-processor" -version = "0.2.0" +version = "0.3.0" dependencies = [ "a2", "anyhow", @@ -6605,7 +6605,7 @@ dependencies = [ [[package]] name = "subvt-onekv-updater" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -6626,7 +6626,7 @@ dependencies = [ [[package]] name = "subvt-persistence" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "chrono", @@ -6644,7 +6644,7 @@ dependencies = [ [[package]] name = "subvt-plotter" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "chrono", @@ -6666,7 +6666,7 @@ dependencies = [ [[package]] name = "subvt-proc-macro" -version = "0.2.0" +version = "0.3.0" dependencies = [ "proc-macro2", "quote", @@ -6675,7 +6675,7 @@ dependencies = [ [[package]] name = "subvt-report-service" -version = "0.2.0" +version = "0.3.0" dependencies = [ "actix-web", "anyhow", @@ -6697,7 +6697,7 @@ dependencies = [ [[package]] name = "subvt-service-common" -version = "0.2.0" +version = "0.3.0" dependencies = [ "actix-web", "anyhow", @@ -6714,7 +6714,7 @@ dependencies = [ [[package]] name = "subvt-substrate-client" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-lock", @@ -6741,7 +6741,7 @@ dependencies = [ [[package]] name = "subvt-telegram-bot" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -6774,7 +6774,7 @@ dependencies = [ [[package]] name = "subvt-telemetry-processor" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-lock", @@ -6797,7 +6797,7 @@ dependencies = [ [[package]] name = "subvt-types" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "chrono", @@ -6846,7 +6846,7 @@ dependencies = [ [[package]] name = "subvt-utility" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "hex", @@ -6856,7 +6856,7 @@ dependencies = [ [[package]] name = "subvt-validator-details-server" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -6880,7 +6880,7 @@ dependencies = [ [[package]] name = "subvt-validator-list-server" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -6906,7 +6906,7 @@ dependencies = [ [[package]] name = "subvt-validator-list-updater" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-lock", diff --git a/_docker/compose/.env.sample b/_docker/compose/.env.sample index fed6663a..70e4caa8 100644 --- a/_docker/compose/.env.sample +++ b/_docker/compose/.env.sample @@ -1,4 +1,4 @@ -VERSION=0.2.0 +VERSION=0.3.0 ENV=production LOG_LEVEL=debug diff --git a/subvt-app-service/Cargo.toml b/subvt-app-service/Cargo.toml index afd38b14..dde08414 100644 --- a/subvt-app-service/Cargo.toml +++ b/subvt-app-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-app-service" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-block-processor/Cargo.toml b/subvt-block-processor/Cargo.toml index d65d9630..02a397c2 100644 --- a/subvt-block-processor/Cargo.toml +++ b/subvt-block-processor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-block-processor" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-config/Cargo.toml b/subvt-config/Cargo.toml index f680cefd..9e0c02f1 100644 --- a/subvt-config/Cargo.toml +++ b/subvt-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-config" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-governance/Cargo.toml b/subvt-governance/Cargo.toml index 89dabfeb..d6d23ab0 100644 --- a/subvt-governance/Cargo.toml +++ b/subvt-governance/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-governance" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-logging/Cargo.toml b/subvt-logging/Cargo.toml index 3d0a56f4..36bbacc2 100644 --- a/subvt-logging/Cargo.toml +++ b/subvt-logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-logging" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-metrics/Cargo.toml b/subvt-metrics/Cargo.toml index 3175c975..87071fb8 100644 --- a/subvt-metrics/Cargo.toml +++ b/subvt-metrics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-metrics" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-network-status-server/Cargo.toml b/subvt-network-status-server/Cargo.toml index fd2b931e..dbf9d18d 100644 --- a/subvt-network-status-server/Cargo.toml +++ b/subvt-network-status-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-network-status-server" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-network-status-updater/Cargo.toml b/subvt-network-status-updater/Cargo.toml index 7f37f30a..206bab04 100644 --- a/subvt-network-status-updater/Cargo.toml +++ b/subvt-network-status-updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-network-status-updater" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-nft/Cargo.toml b/subvt-nft/Cargo.toml index 99d61c0e..6836bf66 100644 --- a/subvt-nft/Cargo.toml +++ b/subvt-nft/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-nft" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-notification-generator/Cargo.toml b/subvt-notification-generator/Cargo.toml index f7daf9d1..92d2f969 100644 --- a/subvt-notification-generator/Cargo.toml +++ b/subvt-notification-generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-notification-generator" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-notification-processor/Cargo.toml b/subvt-notification-processor/Cargo.toml index 9e8d1e42..f98c75fc 100644 --- a/subvt-notification-processor/Cargo.toml +++ b/subvt-notification-processor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-notification-processor" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-onekv-updater/Cargo.toml b/subvt-onekv-updater/Cargo.toml index 8ebfe5ce..a62c805a 100644 --- a/subvt-onekv-updater/Cargo.toml +++ b/subvt-onekv-updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-onekv-updater" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-persistence/Cargo.toml b/subvt-persistence/Cargo.toml index d51497ac..dbdc8690 100644 --- a/subvt-persistence/Cargo.toml +++ b/subvt-persistence/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-persistence" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-plotter/Cargo.toml b/subvt-plotter/Cargo.toml index 919044f1..ed14da0b 100644 --- a/subvt-plotter/Cargo.toml +++ b/subvt-plotter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-plotter" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-proc-macro/Cargo.toml b/subvt-proc-macro/Cargo.toml index 89670527..90740b3f 100644 --- a/subvt-proc-macro/Cargo.toml +++ b/subvt-proc-macro/Cargo.toml @@ -3,7 +3,7 @@ proc-macro = true [package] name = "subvt-proc-macro" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-report-service/Cargo.toml b/subvt-report-service/Cargo.toml index ad1933dc..7425bd6c 100644 --- a/subvt-report-service/Cargo.toml +++ b/subvt-report-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-report-service" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-service-common/Cargo.toml b/subvt-service-common/Cargo.toml index 9cf3cd4e..7b54f71e 100644 --- a/subvt-service-common/Cargo.toml +++ b/subvt-service-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-service-common" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-substrate-client/Cargo.toml b/subvt-substrate-client/Cargo.toml index 550a491f..f0b3560b 100644 --- a/subvt-substrate-client/Cargo.toml +++ b/subvt-substrate-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-substrate-client" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-telegram-bot/Cargo.toml b/subvt-telegram-bot/Cargo.toml index f1d5aa9b..ceb6e8e1 100644 --- a/subvt-telegram-bot/Cargo.toml +++ b/subvt-telegram-bot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-telegram-bot" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-telemetry-processor/Cargo.toml b/subvt-telemetry-processor/Cargo.toml index 4f6ff7e7..f781ead4 100644 --- a/subvt-telemetry-processor/Cargo.toml +++ b/subvt-telemetry-processor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-telemetry-processor" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-types/Cargo.toml b/subvt-types/Cargo.toml index d36f6e9c..fcb6e1df 100644 --- a/subvt-types/Cargo.toml +++ b/subvt-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-types" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-utility/Cargo.toml b/subvt-utility/Cargo.toml index 64de88b7..ce1aae33 100644 --- a/subvt-utility/Cargo.toml +++ b/subvt-utility/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-utility" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-validator-details-server/Cargo.toml b/subvt-validator-details-server/Cargo.toml index 97802764..2f2c2123 100644 --- a/subvt-validator-details-server/Cargo.toml +++ b/subvt-validator-details-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-validator-details-server" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-validator-list-server/Cargo.toml b/subvt-validator-list-server/Cargo.toml index d39d5257..5e063abc 100644 --- a/subvt-validator-list-server/Cargo.toml +++ b/subvt-validator-list-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-validator-list-server" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0" diff --git a/subvt-validator-list-updater/Cargo.toml b/subvt-validator-list-updater/Cargo.toml index 7c95eae8..0a46614a 100644 --- a/subvt-validator-list-updater/Cargo.toml +++ b/subvt-validator-list-updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subvt-validator-list-updater" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.60.0"