Skip to content

Commit

Permalink
Merge pull request #534 from kinode-dao/release-candidate
Browse files Browse the repository at this point in the history
Release candidate 0.9.3
  • Loading branch information
dr-frmr authored Sep 13, 2024
2 parents ba79acf + bf4d2e1 commit f7249da
Show file tree
Hide file tree
Showing 79 changed files with 27,859 additions and 1,344 deletions.
730 changes: 439 additions & 291 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kinode_lib"
authors = ["KinodeDAO"]
version = "0.9.1"
version = "0.9.3"
edition = "2021"
description = "A general-purpose sovereign cloud computing platform"
homepage = "https://kinode.org"
Expand All @@ -17,6 +17,7 @@ members = [
"kinode/packages/app_store/app_store", "kinode/packages/app_store/ft_worker",
"kinode/packages/app_store/download", "kinode/packages/app_store/install", "kinode/packages/app_store/uninstall", "kinode/packages/app_store/downloads", "kinode/packages/app_store/chain",
"kinode/packages/chess/chess",
"kinode/packages/docs/docs",
"kinode/packages/homepage/homepage",
"kinode/packages/kino_updates/blog", "kinode/packages/kino_updates/globe",
"kinode/packages/kns_indexer/kns_indexer", "kinode/packages/kns_indexer/get_block", "kinode/packages/kns_indexer/state",
Expand Down
6 changes: 4 additions & 2 deletions kinode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kinode"
authors = ["KinodeDAO"]
version = "0.9.2"
version = "0.9.3"
edition = "2021"
description = "A general-purpose sovereign cloud computing platform"
homepage = "https://kinode.org"
Expand All @@ -15,7 +15,7 @@ path = "src/main.rs"
[build-dependencies]
anyhow = "1.0.71"
flate2 = "1.0"
kit = { git = "https://github.com/kinode-dao/kit", tag = "v0.6.10" }
kit = { git = "https://github.com/kinode-dao/kit", tag = "v0.7.3" }
tar = "0.4"
tokio = "1.28"
walkdir = "2.4"
Expand Down Expand Up @@ -84,6 +84,8 @@ static_dir = "0.2.0"
thiserror = "1.0"
tokio = { version = "1.28", features = ["fs", "macros", "rt-multi-thread", "signal", "sync"] }
tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] }
unicode-segmentation = "1.11"
unicode-width = "0.1.13"
url = "2.4.1"
warp = "0.3.5"
wasi-common = "19.0.1"
Expand Down
6 changes: 5 additions & 1 deletion kinode/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ fn main() -> anyhow::Result<()> {
}
}

get_kinode_book(&packages_dir)?;
if std::env::var("SKIP_BOOK").is_ok() {
p!("skipping book build");
} else {
get_kinode_book(&packages_dir)?;
}

output_reruns(&packages_dir);

Expand Down
Loading

0 comments on commit f7249da

Please sign in to comment.