diff --git a/PKGBUILD b/PKGBUILD index d6ac242..af591e3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Felice D'Angelo pkgname=clue -pkgver=3.4.6 +pkgver=3.4.7 pkgrel=1 pkgdesc="Clue is a programming language that compiles blazingly fast into Lua code with a syntax similar to languages like C or Rust." arch=('x86_64' 'i686' 'aarch64' 'armv7h' 'arm') diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1542dba..8686689 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -19,7 +19,7 @@ flume = "0.11.0" num_cpus = "1.16.0" crossbeam-queue = "0.3.11" ahash.workspace = true -clue_core = { path = "../core", version = "3.4.6", default-features = false } +clue_core = { path = "../core", version = "3.4.7", default-features = false } clap.workspace = true mlua = { version = "0.9.6", features = ["luajit", "vendored"], optional = true } rpmalloc = { version = "0.2.2", optional = true } diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index cddfc25..ae3e32f 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] serde = "1.0.197" wasm-bindgen = "0.2.92" -clue_core = { path = "../core", version = "3.4.6", default-features = false, features = [ +clue_core = { path = "../core", version = "3.4.7", default-features = false, features = [ "serde", ] } serde-wasm-bindgen = "0.6.5"