Version update: v0.2.3 → v0.2.4

This commit is contained in:
TC Johnson 2023-10-15 12:24:59 -05:00
parent e37dd5e33b
commit cc5cb8a8b0
No known key found for this signature in database
10 changed files with 381 additions and 235 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.3
current_version = 0.2.4
[bumpversion:file:veilid-server/Cargo.toml]
search = name = "veilid-server"

590
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
[package]
# --- Bumpversion match - do not reorder
name = "veilid-cli"
version = "0.2.3"
version = "0.2.4"
# ---
authors = ["Veilid Team <contact@veilid.com>"]
edition = "2021"
@ -54,7 +54,7 @@ flexi_logger = { version = "^0", features = ["use_chrono_for_offset"] }
thiserror = "^1"
crossbeam-channel = "^0"
hex = "^0"
veilid-tools = { version = "0.2.3", path = "../veilid-tools" }
veilid-tools = { version = "0.2.4", path = "../veilid-tools" }
json = "^0"
stop-token = { version = "^0", default-features = false }

View File

@ -1,7 +1,7 @@
[package]
# --- Bumpversion match - do not reorder
name = "veilid-core"
version = "0.2.3"
version = "0.2.4"
# ---
description = "Core library used to create a Veilid node and operate it as part of an application"
authors = ["Veilid Team <contact@veilid.com>"]
@ -57,7 +57,7 @@ network-result-extra = ["veilid-tools/network-result-extra"]
[dependencies]
# Tools
veilid-tools = { version = "0.2.3", path = "../veilid-tools", features = [
veilid-tools = { version = "0.2.4", path = "../veilid-tools", features = [
"tracing",
], default-features = false }
paste = "1.0.14"
@ -179,7 +179,7 @@ socket2 = { version = "0.5.4", features = ["all"] }
# Dependencies for WASM builds only
[target.'cfg(target_arch = "wasm32")'.dependencies]
veilid-tools = { version = "0.2.3", path = "../veilid-tools", default-features = false, features = [
veilid-tools = { version = "0.2.4", path = "../veilid-tools", default-features = false, features = [
"rt-wasm-bindgen",
] }

View File

@ -1,6 +1,6 @@
# --- Bumpversion match - do not reorder
name: veilid
version: 0.2.3
version: 0.2.4
# ---
description: Veilid Framework
homepage: https://veilid.com

View File

@ -1,7 +1,7 @@
[package]
# --- Bumpversion match - do not reorder
name = "veilid-flutter"
version = "0.2.3"
version = "0.2.4"
# ---
authors = ["Veilid Team <contact@veilid.com>"]
license = "MPL-2.0"

View File

@ -1,7 +1,7 @@
[tool.poetry]
# --- Bumpversion match - do not reorder
name = "veilid"
version = "0.2.3"
version = "0.2.4"
# ---
description = ""
authors = ["Veilid Team <contact@veilid.com>"]

View File

@ -1,7 +1,7 @@
[package]
# --- Bumpversion match - do not reorder
name = "veilid-server"
version = "0.2.3"
version = "0.2.4"
# ---
description = "Veilid Server"
authors = ["Veilid Team <contact@veilid.com>"]

View File

@ -1,7 +1,7 @@
[package]
# --- Bumpversion match - do not reorder
name = "veilid-tools"
version = "0.2.3"
version = "0.2.4"
# ---
description = "A collection of baseline tools for Rust development use by Veilid and Veilid-enabled Rust applications"
authors = ["Veilid Team <contact@veilid.com>"]

View File

@ -1,7 +1,7 @@
[package]
# --- Bumpversion match - do not reorder
name = "veilid-wasm"
version = "0.2.3"
version = "0.2.4"
# ---
authors = ["Veilid Team <contact@veilid.com>"]
license = "MPL-2.0"
@ -15,7 +15,7 @@ default = ["veilid-core/default-wasm"]
crypto-test = ["veilid-core/crypto-test"]
[dependencies]
veilid-core = { version = "0.2.3", path = "../veilid-core", default-features = false }
veilid-core = { version = "0.2.4", path = "../veilid-core", default-features = false }
tracing = { version = "^0", features = ["log", "attributes"] }
tracing-wasm = "^0"