From ad484ac64f0eef590ca1a3bcf2ed1fbe055fe79c Mon Sep 17 00:00:00 2001 From: hozan23 Date: Sun, 22 Dec 2024 12:42:48 +0100 Subject: [PATCH] bump version to 0.2.0 --- Cargo.lock | 12 ++++++------ Cargo.toml | 14 +++++++------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5b2f834..ea41f9c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1213,7 +1213,7 @@ dependencies = [ [[package]] name = "karyon_async_rustls" -version = "0.1.8" +version = "0.2.0" dependencies = [ "futures-rustls", "tokio-rustls", @@ -1221,7 +1221,7 @@ dependencies = [ [[package]] name = "karyon_core" -version = "0.1.8" +version = "0.2.0" dependencies = [ "async-channel 2.3.1", "async-process", @@ -1242,7 +1242,7 @@ dependencies = [ [[package]] name = "karyon_jsonrpc" -version = "0.1.8" +version = "0.2.0" dependencies = [ "async-channel 2.3.1", "async-trait", @@ -1261,7 +1261,7 @@ dependencies = [ [[package]] name = "karyon_jsonrpc_macro" -version = "0.1.8" +version = "0.2.0" dependencies = [ "proc-macro2", "quote", @@ -1271,7 +1271,7 @@ dependencies = [ [[package]] name = "karyon_net" -version = "0.1.8" +version = "0.2.0" dependencies = [ "async-trait", "async-tungstenite", @@ -1291,7 +1291,7 @@ dependencies = [ [[package]] name = "karyon_p2p" -version = "0.1.8" +version = "0.2.0" dependencies = [ "async-channel 2.3.1", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index b980b313..b4c84f56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = ["core", "net", "net/async_rustls", "jsonrpc", "jsonrpc/impl", "p2p"] [workspace.package] description = "A library for building p2p, decentralized, and collaborative software" -version = "0.1.8" +version = "0.2.0" edition = "2021" homepage = "https://karyontech.net" repository = "https://github.com/karyontech/karyon" @@ -14,15 +14,15 @@ license = "GPL-3.0" authors = ["hozan23 "] [workspace.dependencies] -karyon_core = { path = "core", version = "0.1.8", default-features = false } +karyon_core = { path = "core", version = "0.2.0", default-features = false } -karyon_net = { path = "net", version = "0.1.8", default-features = false } -karyon_async_rustls = { path = "net/async_rustls", version = "0.1.8", default-features = false } +karyon_net = { path = "net", version = "0.2.0", default-features = false } +karyon_async_rustls = { path = "net/async_rustls", version = "0.2.0", default-features = false } -karyon_jsonrpc = { path = "jsonrpc", version = "0.1.8", default-features = false } -karyon_jsonrpc_macro = { path = "jsonrpc/impl", version = "0.1.8", default-features = false } +karyon_jsonrpc = { path = "jsonrpc", version = "0.2.0", default-features = false } +karyon_jsonrpc_macro = { path = "jsonrpc/impl", version = "0.2.0", default-features = false } -karyon_p2p = { path = "p2p", version = "0.1.8", default-features = false } +karyon_p2p = { path = "p2p", version = "0.2.0", default-features = false } log = "0.4" thiserror = "1.0"