Bump version to v0.2.13

This commit is contained in:
Jeremy Wall 2023-01-05 11:18:01 -05:00
parent e4d8b078e9
commit 8b689bfdf5
5 changed files with 8 additions and 8 deletions

7
Cargo.lock generated
View File

@ -1282,7 +1282,7 @@ dependencies = [
[[package]]
name = "kitchen"
version = "0.2.12"
version = "0.2.13"
dependencies = [
"api",
"argon2",
@ -1312,7 +1312,7 @@ dependencies = [
[[package]]
name = "kitchen-wasm"
version = "0.2.12"
version = "0.2.13"
dependencies = [
"api",
"async-trait",
@ -2214,7 +2214,8 @@ dependencies = [
[[package]]
name = "sycamore-state"
version = "0.1.0"
source = "git+https://github.com/zaphar/sycamore-state?rev=v0.1.0#bc8854b4dde1294915b2aa7f3fcd710515f3dfd8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d062eab83a67073c6b39e4a7fa9901558333946729d63cfcb7d0e97f0bf4d75"
dependencies = [
"sycamore",
"wasm-bindgen",

View File

@ -17,7 +17,7 @@
kitchenGen = (import ./nix/kitchen/default.nix);
kitchenWasmGen = (import ./nix/kitchenWasm/default.nix);
moduleGen = (import ./nix/kitchen/module.nix);
version = "0.2.12";
version = "0.2.13";
in
flake-utils.lib.eachDefaultSystem (system:
let

View File

@ -1,6 +1,6 @@
[package]
name = "kitchen"
version = "0.2.12"
version = "0.2.13"
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
edition = "2021"

View File

@ -14,7 +14,6 @@ let
# incorrect. We override those here.
"sycamore-0.8.2" = "sha256-D968+8C5EelGGmot9/LkAlULZOf/Cr+1WYXRCMwb1nQ=";
"sqlx-0.6.2" = "sha256-X/LFvtzRfiOIEZJiVzmFvvULPpjhqvI99pSwH7a//GM=";
"sycamore-state-0.0.1" = "sha256-RatNr1b6r7eP3fOVatHA44D9xhDAljqSIWtFpMeBA9Y=";
};
});
in

View File

@ -1,6 +1,6 @@
[package]
name = "kitchen-wasm"
version = "0.2.12"
version = "0.2.13"
edition = "2021"
[features]
@ -15,7 +15,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
recipes = { path = "../recipes" }
client-api = { path = "../api", package="api", features = ["browser"] }
sycamore-state = { git="https://github.com/zaphar/sycamore-state", rev="v0.1.0" }
sycamore-state = "0.1.0"
# This makes debugging panics more tractable.
console_error_panic_hook = "0.1.7"
serde_json = "1.0.79"