Release 0.0.28
aiken@0.0.28 aiken-lang@0.0.28 aiken-lsp@0.0.28 aiken-project@0.0.28 uplc@0.0.28 Generated by cargo-workspaces
This commit is contained in:
parent
b6de2549a2
commit
d649b34ec3
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,6 +1,20 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [next] - 2022-MM-DD
|
## [next] - 2023-MM-DD
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## [v0.0.28] - 2023-01-06
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiken"
|
name = "aiken"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiken-lang",
|
"aiken-lang",
|
||||||
"aiken-lsp",
|
"aiken-lsp",
|
||||||
|
@ -72,7 +72,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiken-lang"
|
name = "aiken-lang"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chumsky",
|
"chumsky",
|
||||||
"hex",
|
"hex",
|
||||||
|
@ -91,7 +91,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiken-lsp"
|
name = "aiken-lsp"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiken-lang",
|
"aiken-lang",
|
||||||
"aiken-project",
|
"aiken-project",
|
||||||
|
@ -108,7 +108,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiken-project"
|
name = "aiken-project"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiken-lang",
|
"aiken-lang",
|
||||||
"askama",
|
"askama",
|
||||||
|
@ -2233,7 +2233,7 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uplc"
|
name = "uplc"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"cryptoxide",
|
"cryptoxide",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aiken-lang"
|
name = "aiken-lang"
|
||||||
description = "The aiken compiler"
|
description = "The aiken compiler"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/aiken-lang/aiken"
|
repository = "https://github.com/aiken-lang/aiken"
|
||||||
homepage = "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"
|
owo-colors = "3.5.0"
|
||||||
strum = "0.24.1"
|
strum = "0.24.1"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.37"
|
||||||
uplc = { path = '../uplc', version = "0.0.27" }
|
uplc = { path = '../uplc', version = "0.0.28" }
|
||||||
vec1 = "1.8.0"
|
vec1 = "1.8.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aiken-lsp"
|
name = "aiken-lsp"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Cardano smart contract language and toolchain"
|
description = "Cardano smart contract language and toolchain"
|
||||||
repository = "https://github.com/aiken-lang/aiken"
|
repository = "https://github.com/aiken-lang/aiken"
|
||||||
|
@ -10,8 +10,8 @@ authors = ["Lucas Rosa <x@rvcas.dev>"]
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aiken-lang = { path = '../aiken-lang', version = "0.0.27" }
|
aiken-lang = { path = '../aiken-lang', version = "0.0.28" }
|
||||||
aiken-project = { path = '../aiken-project', version = "0.0.27" }
|
aiken-project = { path = '../aiken-project', version = "0.0.28" }
|
||||||
crossbeam-channel = "0.5.6"
|
crossbeam-channel = "0.5.6"
|
||||||
lsp-server = "0.6.0"
|
lsp-server = "0.6.0"
|
||||||
lsp-types = "0.93.2"
|
lsp-types = "0.93.2"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aiken-project"
|
name = "aiken-project"
|
||||||
description = "Aiken project utilities"
|
description = "Aiken project utilities"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/aiken-lang/aiken/crates/project"
|
repository = "https://github.com/aiken-lang/aiken/crates/project"
|
||||||
homepage = "https://github.com/aiken-lang/aiken"
|
homepage = "https://github.com/aiken-lang/aiken"
|
||||||
|
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
||||||
authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"]
|
authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aiken-lang = { path = "../aiken-lang", version = "0.0.27" }
|
aiken-lang = { path = "../aiken-lang", version = "0.0.28" }
|
||||||
askama = "0.10.5"
|
askama = "0.10.5"
|
||||||
dirs = "4.0.0"
|
dirs = "4.0.0"
|
||||||
fslock = "0.2.1"
|
fslock = "0.2.1"
|
||||||
|
@ -30,6 +30,6 @@ strip-ansi-escapes = "0.1.1"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.37"
|
||||||
tokio = { version = "1.23.0", features = ["full"] }
|
tokio = { version = "1.23.0", features = ["full"] }
|
||||||
toml = "0.5.9"
|
toml = "0.5.9"
|
||||||
uplc = { path = '../uplc', version = "0.0.27" }
|
uplc = { path = '../uplc', version = "0.0.28" }
|
||||||
walkdir = "2.3.2"
|
walkdir = "2.3.2"
|
||||||
zip-extract = "0.1.1"
|
zip-extract = "0.1.1"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aiken"
|
name = "aiken"
|
||||||
description = "Cardano smart contract language and toolchain"
|
description = "Cardano smart contract language and toolchain"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/aiken-lang/aiken"
|
repository = "https://github.com/aiken-lang/aiken"
|
||||||
homepage = "https://github.com/aiken-lang/aiken"
|
homepage = "https://github.com/aiken-lang/aiken"
|
||||||
|
@ -24,7 +24,7 @@ pallas-traverse = "0.16.0"
|
||||||
regex = "1.5.4"
|
regex = "1.5.4"
|
||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
|
|
||||||
aiken-lang = { path = "../aiken-lang", version = "0.0.27" }
|
aiken-lang = { path = "../aiken-lang", version = "0.0.28" }
|
||||||
aiken-lsp = { path = "../aiken-lsp", version = "0.0.27" }
|
aiken-lsp = { path = "../aiken-lsp", version = "0.0.28" }
|
||||||
aiken-project = { path = '../aiken-project', version = "0.0.27" }
|
aiken-project = { path = '../aiken-project', version = "0.0.28" }
|
||||||
uplc = { path = '../uplc', version = "0.0.27" }
|
uplc = { path = '../uplc', version = "0.0.28" }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uplc"
|
name = "uplc"
|
||||||
description = "Utilities for working with Untyped Plutus Core"
|
description = "Utilities for working with Untyped Plutus Core"
|
||||||
version = "0.0.27"
|
version = "0.0.28"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/aiken-lang/aiken/crates/uplc"
|
repository = "https://github.com/aiken-lang/aiken/crates/uplc"
|
||||||
homepage = "https://github.com/aiken-lang/aiken"
|
homepage = "https://github.com/aiken-lang/aiken"
|
||||||
|
|
Loading…
Reference in New Issue