From e4318f96b5094b3fcfcfdcd603f380886e6e3624 Mon Sep 17 00:00:00 2001 From: sslivkoff Date: Tue, 27 Aug 2024 11:06:38 -0700 Subject: [PATCH] bump to 0.2.1 --- python/mesc/__init__.py | 2 +- rust/Cargo.toml | 2 +- rust/README.md | 2 +- rust/crates/mesc_cli/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/python/mesc/__init__.py b/python/mesc/__init__.py index 5d6e603..8b0e8f0 100644 --- a/python/mesc/__init__.py +++ b/python/mesc/__init__.py @@ -39,4 +39,4 @@ 'get_global_metadata', ) -__version__ = '0.2.0' +__version__ = '0.2.1' diff --git a/rust/Cargo.toml b/rust/Cargo.toml index f5e759d..8210660 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -7,7 +7,7 @@ members = ["crates/mesc", "crates/mesc_cli"] resolver = "2" [workspace.package] -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT OR Apache-2.0" homepage = "https://github.com/paradigmxyz/mesc" diff --git a/rust/README.md b/rust/README.md index aac84bc..75bb36d 100644 --- a/rust/README.md +++ b/rust/README.md @@ -16,7 +16,7 @@ The `crates/mesc_cli` crate is a tool for reading, writing, and validating MESC Inside a cargo project: `cargo add mesc` -Inside a `Cargo.toml`: `mesc = "0.2.0"` +Inside a `Cargo.toml`: `mesc = "0.2.1"` ## Example Usage diff --git a/rust/crates/mesc_cli/Cargo.toml b/rust/crates/mesc_cli/Cargo.toml index 3c25d1c..40d34b3 100644 --- a/rust/crates/mesc_cli/Cargo.toml +++ b/rust/crates/mesc_cli/Cargo.toml @@ -19,7 +19,7 @@ edit = "0.1.4" futures = "0.3.29" inquire = "0.6.2" ipgeolocate = "0.3.6" -mesc = { version = "0.2.0", path = "../mesc" } +mesc = { version = "0.2.1", path = "../mesc" } reqwest = { version = "0.11.22", features = ["json"] } serde = { workspace = true } serde_json = { workspace = true }