Skip to content

Commit

Permalink
chore: bump package versions to v0.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
zicklag committed Oct 16, 2024
1 parent db31b8b commit a35abac
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
]

[workspace.package]
version = "0.0.1"
version = "0.1.0"
authors = ["Weird / Leaf Contributors"]
categories = ["network-programming"]
documentation = "https://github.com/muni-town/agentic-fediverse/blob/main/leaf-protocol-draft.md"
Expand Down
4 changes: 2 additions & 2 deletions leaf/leaf-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ backend_iroh = ["iroh", "quick_cache", "tokio", "once_cell"]
[dependencies]
anyhow = "1.0.86"
borsh = { version = "1.5.1", features = ["derive"] }
leaf-protocol-macros = { version = "0.0.1", path = "./macros" }
leaf-protocol-types = { version = "0.0.1", path = "./types" }
leaf-protocol-macros = { version = "0.1.0", path = "./macros" }
leaf-protocol-types = { version = "0.1.0", path = "./types" }

# backend_iroh
futures = { version = "0.3.30", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion leaf/leaf-protocol/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc-macro = true
borsh = "1.5.1"
iroh-base = "0.22.0"
iroh-blake3 = "1.4.5"
leaf-protocol-types = { version = "0.0.1", path = "../types" }
leaf-protocol-types = { version = "0.1.0", path = "../types" }
proc-macro2 = "1.0.86"
quote = "1.0"
unsynn = "0.0.8"
Expand Down
2 changes: 1 addition & 1 deletion leaf/leaf-rpc-client-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ description = "CLI client for the Leaf RPC server."
anyhow = "1.0.86"
clap = { version = "4.5.13", features = ["derive"] }
iroh-base = "0.22.0"
leaf-rpc-client = { path = "../leaf-rpc-client", version = "0.0.1" }
leaf-rpc-client = { path = "../leaf-rpc-client", version = "0.1.0" }
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
4 changes: 2 additions & 2 deletions leaf/leaf-rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tokio = "1.39.2"
anyhow = "1.0.86"
async-stream = "0.3.5"
futures = { version = "0.3.30", default-features = false }
leaf-protocol = { path = "../leaf-protocol", version = "0.0.1", default-features = false }
leaf-rpc-proto = { path = "../leaf-rpc-proto", version = "0.0.1" }
leaf-protocol = { path = "../leaf-protocol", version = "0.1.0", default-features = false }
leaf-rpc-proto = { path = "../leaf-rpc-proto", version = "0.1.0" }
tokio-stream = "0.1.15"
tracing = "0.1.40"
2 changes: 1 addition & 1 deletion leaf/leaf-rpc-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ description = "Types for the wire protocol of the Leaf RPC server."

[dependencies]
borsh = { version = "1.5.1", features = ["derive"] }
leaf-protocol = { path = "../leaf-protocol", version = "0.0.1", default-features = false }
leaf-protocol = { path = "../leaf-protocol", version = "0.1.0", default-features = false }
4 changes: 2 additions & 2 deletions leaf/leaf-rpc-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ tower-http = { version = "0.5.2", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }

leaf-protocol = { path = "../leaf-protocol", version = "0.0.1" }
leaf-rpc-proto = { path = "../leaf-rpc-proto", version = "0.0.1" }
leaf-protocol = { path = "../leaf-protocol", version = "0.1.0" }
leaf-rpc-proto = { path = "../leaf-rpc-proto", version = "0.1.0" }
2 changes: 1 addition & 1 deletion leaf/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "leaf-proto",
"version": "0.0.0",
"version": "0.1.0",
"description": "Leaf protocol RPC client.",
"keywords": [],
"author": "Muni Town Developers ( https://github.com/muni-town )",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "weird",
"version": "0.0.1",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite dev",
Expand Down

0 comments on commit a35abac

Please sign in to comment.