From e3ce9bfda6dca3f089cb24136192ca1790821847 Mon Sep 17 00:00:00 2001 From: Sherif Abdelmoatty Date: Sun, 6 Oct 2024 18:42:39 +0300 Subject: [PATCH] Bump version --- pyproject.toml | 2 +- voltaire_p2p/p2p_network/voltaire_version/src/lib.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5b9ffce..a625b81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "voltaire_bundler" -version = "v0.1.0-alpha.34" +version = "v0.1.0-alpha.35" description = "EIP-4337 python Bundler" authors = ["Candide Wallet Team"] license = "LGPL" diff --git a/voltaire_p2p/p2p_network/voltaire_version/src/lib.rs b/voltaire_p2p/p2p_network/voltaire_version/src/lib.rs index 396343d..858eaf1 100644 --- a/voltaire_p2p/p2p_network/voltaire_version/src/lib.rs +++ b/voltaire_p2p/p2p_network/voltaire_version/src/lib.rs @@ -1,12 +1,12 @@ use target_info::Target; -pub const VERSION: &str = "Voltaire/v0.1.0a34"; +pub const VERSION: &str = "Voltaire/v0.1.0a35"; /// Returns `VERSION`, but with platform information appended to the end. /// /// ## Example /// -/// `Voltaire/v0.1.0a34/x86_64-linux` +/// `Voltaire/v0.1.0a35/x86_64-linux` pub fn version_with_platform() -> String { format!("{}/{}-{}", VERSION, Target::arch(), Target::os()) }