diff --git a/Cargo.lock b/Cargo.lock index 5d8a1275..d8af9275 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -48,7 +48,7 @@ dependencies = [ [[package]] name = "aiken" -version = "0.0.22" +version = "0.0.23" dependencies = [ "aiken-lang", "aiken-project", @@ -67,7 +67,7 @@ dependencies = [ [[package]] name = "aiken-lang" -version = "0.0.22" +version = "0.0.23" dependencies = [ "chumsky", "internment", @@ -82,7 +82,7 @@ dependencies = [ [[package]] name = "aiken-project" -version = "0.0.22" +version = "0.0.23" dependencies = [ "aiken-lang", "miette", @@ -1211,7 +1211,7 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" [[package]] name = "uplc" -version = "0.0.22" +version = "0.0.23" dependencies = [ "anyhow", "cryptoxide", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index ff9547f4..b76debde 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aiken" description = "Cardano smart contract language and toolchain" -version = "0.0.22" +version = "0.0.23" edition = "2021" repository = "https://github.com/txpipe/aiken" homepage = "https://github.com/txpipe/aiken" @@ -20,6 +20,6 @@ pallas-crypto = "0.14.0-alpha.3" pallas-primitives = "0.14.0-alpha.3" pallas-traverse = "0.14.0-alpha.3" -aiken-lang = { path = "../lang", version = "0.0.22" } -aiken-project = { path = '../project', version = "0.0.22" } -uplc = { path = '../uplc', version = "0.0.22" } +aiken-lang = { path = "../lang", version = "0.0.23" } +aiken-project = { path = '../project', version = "0.0.23" } +uplc = { path = '../uplc', version = "0.0.23" } diff --git a/crates/lang/Cargo.toml b/crates/lang/Cargo.toml index cb750244..c4554b21 100644 --- a/crates/lang/Cargo.toml +++ b/crates/lang/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aiken-lang" description = "The aiken compiler" -version = "0.0.22" +version = "0.0.23" edition = "2021" repository = "https://github.com/txpipe/aiken" homepage = "https://github.com/txpipe/aiken" @@ -17,7 +17,7 @@ itertools = "0.10.5" miette = "5.2.0" strum = "0.24.1" thiserror = "1.0.37" -uplc = { path = '../uplc', version = "0.0.22" } +uplc = { path = '../uplc', version = "0.0.23" } vec1 = "1.8.0" [dev-dependencies] diff --git a/crates/project/Cargo.toml b/crates/project/Cargo.toml index bee7579e..28023796 100644 --- a/crates/project/Cargo.toml +++ b/crates/project/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aiken-project" description = "Aiken project utilities" -version = "0.0.22" +version = "0.0.23" edition = "2021" repository = "https://github.com/txpipe/aiken/crates/project" homepage = "https://github.com/txpipe/aiken" @@ -9,7 +9,7 @@ license = "Apache-2.0" authors = ["Lucas Rosa ", "Kasey White "] [dependencies] -aiken-lang = { path = "../lang", version = "0.0.22" } +aiken-lang = { path = "../lang", version = "0.0.23" } miette = { version = "5.3.0", features = ["fancy"] } petgraph = "0.6.2" regex = "1.6.0" diff --git a/crates/uplc/Cargo.toml b/crates/uplc/Cargo.toml index bd68f202..03c08720 100644 --- a/crates/uplc/Cargo.toml +++ b/crates/uplc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "uplc" description = "Utilities for working with Untyped Plutus Core" -version = "0.0.22" +version = "0.0.23" edition = "2021" repository = "https://github.com/txpipe/aiken/crates/uplc" homepage = "https://github.com/txpipe/aiken"