diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b66b992..b742b01e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ ### Added +N/A + +### Changed + +N/A + +### Removed + +N/A + +## [v0.0.27] - 2022-MM-DD + +### Added + - **aiken-lang**: integrated unit tests Aiken now supports writing unit tests directly in source files using the new diff --git a/Cargo.lock b/Cargo.lock index ef92cb2c..f3cbb7ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -48,7 +48,7 @@ dependencies = [ [[package]] name = "aiken" -version = "0.0.26" +version = "0.0.27" dependencies = [ "aiken-lang", "aiken-lsp", @@ -72,7 +72,7 @@ dependencies = [ [[package]] name = "aiken-lang" -version = "0.0.26" +version = "0.0.27" dependencies = [ "chumsky", "hex", @@ -91,7 +91,7 @@ dependencies = [ [[package]] name = "aiken-lsp" -version = "0.0.26" +version = "0.0.27" dependencies = [ "aiken-lang", "aiken-project", @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "aiken-project" -version = "0.0.26" +version = "0.0.27" dependencies = [ "aiken-lang", "askama", @@ -531,7 +531,7 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flat-rs" -version = "0.0.21" +version = "0.0.27" dependencies = [ "anyhow", "proptest", @@ -2232,7 +2232,7 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" [[package]] name = "uplc" -version = "0.0.25" +version = "0.0.27" dependencies = [ "anyhow", "cryptoxide", diff --git a/crates/aiken-lang/Cargo.toml b/crates/aiken-lang/Cargo.toml index fa814c23..ed9714e8 100644 --- a/crates/aiken-lang/Cargo.toml +++ b/crates/aiken-lang/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aiken-lang" description = "The aiken compiler" -version = "0.0.26" +version = "0.0.27" edition = "2021" repository = "https://github.com/aiken-lang/aiken" homepage = "https://github.com/aiken-lang/aiken" @@ -21,7 +21,7 @@ ordinal = "0.3.2" owo-colors = "3.5.0" strum = "0.24.1" thiserror = "1.0.37" -uplc = { path = '../uplc', version = "0.0.25" } +uplc = { path = '../uplc', version = "0.0.27" } vec1 = "1.8.0" [dev-dependencies] diff --git a/crates/aiken-lsp/Cargo.toml b/crates/aiken-lsp/Cargo.toml index 86bbf5b0..85678735 100644 --- a/crates/aiken-lsp/Cargo.toml +++ b/crates/aiken-lsp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aiken-lsp" -version = "0.0.26" +version = "0.0.27" edition = "2021" description = "Cardano smart contract language and toolchain" repository = "https://github.com/aiken-lang/aiken" @@ -10,8 +10,8 @@ authors = ["Lucas Rosa "] [dependencies] -aiken-lang = { path = '../aiken-lang', version = "0.0.26" } -aiken-project = { path = '../aiken-project', version = "0.0.26" } +aiken-lang = { path = '../aiken-lang', version = "0.0.27" } +aiken-project = { path = '../aiken-project', version = "0.0.27" } crossbeam-channel = "0.5.6" lsp-server = "0.6.0" lsp-types = "0.93.2" diff --git a/crates/aiken-project/Cargo.toml b/crates/aiken-project/Cargo.toml index 8968b841..e8da818f 100644 --- a/crates/aiken-project/Cargo.toml +++ b/crates/aiken-project/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aiken-project" description = "Aiken project utilities" -version = "0.0.26" +version = "0.0.27" edition = "2021" repository = "https://github.com/aiken-lang/aiken/crates/project" homepage = "https://github.com/aiken-lang/aiken" @@ -9,7 +9,7 @@ license = "Apache-2.0" authors = ["Lucas Rosa ", "Kasey White "] [dependencies] -aiken-lang = { path = "../aiken-lang", version = "0.0.26" } +aiken-lang = { path = "../aiken-lang", version = "0.0.27" } askama = "0.10.5" dirs = "4.0.0" fslock = "0.2.1" @@ -30,6 +30,6 @@ strip-ansi-escapes = "0.1.1" thiserror = "1.0.37" tokio = { version = "1.23.0", features = ["full"] } toml = "0.5.9" -uplc = { path = '../uplc', version = "0.0.25" } +uplc = { path = '../uplc', version = "0.0.27" } walkdir = "2.3.2" zip-extract = "0.1.1" diff --git a/crates/aiken/Cargo.toml b/crates/aiken/Cargo.toml index 59107a24..ea5a9040 100644 --- a/crates/aiken/Cargo.toml +++ b/crates/aiken/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aiken" description = "Cardano smart contract language and toolchain" -version = "0.0.26" +version = "0.0.27" edition = "2021" repository = "https://github.com/aiken-lang/aiken" homepage = "https://github.com/aiken-lang/aiken" @@ -24,7 +24,7 @@ pallas-traverse = "0.14.0" regex = "1.5.4" thiserror = "1.0.31" -aiken-lang = { path = "../aiken-lang", version = "0.0.26" } -aiken-lsp = { path = "../aiken-lsp", version = "0.0.26" } -aiken-project = { path = '../aiken-project', version = "0.0.26" } -uplc = { path = '../uplc', version = "0.0.25" } +aiken-lang = { path = "../aiken-lang", version = "0.0.27" } +aiken-lsp = { path = "../aiken-lsp", version = "0.0.27" } +aiken-project = { path = '../aiken-project', version = "0.0.27" } +uplc = { path = '../uplc', version = "0.0.27" } diff --git a/crates/flat-rs/Cargo.toml b/crates/flat-rs/Cargo.toml index 517a91b6..929e4027 100644 --- a/crates/flat-rs/Cargo.toml +++ b/crates/flat-rs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "flat-rs" description = "Flat codec" -version = "0.0.21" +version = "0.0.27" edition = "2021" repository = "https://github.com/aiken-lang/aiken/crates/flat" homepage = "https://github.com/aiken-lang/aiken" diff --git a/crates/uplc/Cargo.toml b/crates/uplc/Cargo.toml index cc65fed0..63b17115 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.25" +version = "0.0.27" edition = "2021" repository = "https://github.com/aiken-lang/aiken/crates/uplc" homepage = "https://github.com/aiken-lang/aiken" @@ -14,7 +14,7 @@ exclude = ["test_data/*"] [dependencies] cryptoxide = "0.4.2" -flat-rs = { path = "../flat-rs", version = "0.0.21" } +flat-rs = { path = "../flat-rs", version = "0.0.27" } hex = "0.4.3" pallas-addresses = "0.14.0" pallas-codec = "0.14.0"