From b21c850dc4d14224de0bb96535d4508415bd3843 Mon Sep 17 00:00:00 2001 From: Abhishek Shah Date: Tue, 3 Dec 2024 11:38:30 +0530 Subject: [PATCH] prepare 0.2.3 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 ++ 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d34ce7..a579f6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,4 +9,7 @@ ### [v0.2.1 - v0.2.2] - Remove dependency on `cURL`. We use reqwest now. -- Concurrent downloads for `pjs` and `polkadot` exe. \ No newline at end of file +- Concurrent downloads for `pjs` and `polkadot` exe. + +### [v0.2.2 - v0.2.3] +- No functional changes. Update to include newer binary in crates.io diff --git a/Cargo.lock b/Cargo.lock index a407232..9221fd4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -746,7 +746,7 @@ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" [[package]] name = "local-polkadot" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index e772d9c..85a70f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "local-polkadot" description = "A simple CLI tool to run a local Polkadot RPC Node and explorer" -version = "0.2.2" +version = "0.2.3" edition = "2021" license = "GPL-3.0" authors = ["Abhishek Shah "] diff --git a/README.md b/README.md index cb51f6b..4dd54c4 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,8 @@ Would remove the `$HOME/.local-polkadot` folder, recreate it, and redownload the You can also use local polkadot as `local-polkadot --tmp` to remove `$HOME/.local-polkadot` after you're done. +If you're already running an explorer, you might want to pass in `--skip-pjs` or `--skip-polkadotjs` which makes sure to only run the polkadot node and not the explorer + ## More about local-polkadot This tool does nothing new that couldn't be done manually. I created this for myself as I found myself doing the steps manually many times.