Bump versions to 1.0.0-alpha, update CHANGELOG.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "aiken-lang"
|
||||
description = "The Aiken compiler"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/aiken-lang/aiken"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
@@ -20,9 +20,10 @@ ordinal = "0.3.2"
|
||||
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
|
||||
strum = "0.24.1"
|
||||
thiserror = "1.0.39"
|
||||
uplc = { path = '../uplc', version = "0.0.29" }
|
||||
vec1 = "1.10.1"
|
||||
|
||||
uplc = { path = '../uplc', version = "1.0.0-alpha" }
|
||||
|
||||
[dev-dependencies]
|
||||
indoc = "2.0.1"
|
||||
pretty_assertions = "1.3.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "aiken-lsp"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
edition = "2021"
|
||||
description = "Cardano smart contract language and toolchain"
|
||||
repository = "https://github.com/aiken-lang/aiken"
|
||||
@@ -10,8 +10,6 @@ authors = ["Lucas Rosa <x@rvcas.dev>"]
|
||||
rust-version = "1.66.1"
|
||||
|
||||
[dependencies]
|
||||
aiken-lang = { path = '../aiken-lang', version = "0.0.29" }
|
||||
aiken-project = { path = '../aiken-project', version = "0.0.29" }
|
||||
crossbeam-channel = "0.5.7"
|
||||
indoc = "2.0.1"
|
||||
itertools = "0.10.5"
|
||||
@@ -25,3 +23,6 @@ thiserror = "1.0.39"
|
||||
tracing = "0.1.37"
|
||||
url = "2.3.1"
|
||||
urlencoding = "2.1.2"
|
||||
|
||||
aiken-lang = { path = '../aiken-lang', version = "1.0.0-alpha" }
|
||||
aiken-project = { path = '../aiken-project', version = "1.0.0-alpha" }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "aiken-project"
|
||||
description = "Aiken project utilities"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/aiken-lang/aiken/crates/project"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
@@ -10,7 +10,6 @@ authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>", "Kto
|
||||
rust-version = "1.66.1"
|
||||
|
||||
[dependencies]
|
||||
aiken-lang = { path = "../aiken-lang", version = "0.0.29" }
|
||||
askama = "0.12.0"
|
||||
assert-json-diff = "2.0.2"
|
||||
dirs = "4.0.0"
|
||||
@@ -36,9 +35,11 @@ strip-ansi-escapes = "0.1.1"
|
||||
thiserror = "1.0.39"
|
||||
tokio = { version = "1.26.0", features = ["full"] }
|
||||
toml = "0.7.2"
|
||||
uplc = { path = '../uplc', version = "0.0.29" }
|
||||
walkdir = "2.3.2"
|
||||
zip = "0.6.4"
|
||||
|
||||
aiken-lang = { path = "../aiken-lang", version = "1.0.0-alpha" }
|
||||
uplc = { path = '../uplc', version = "1.0.0-alpha" }
|
||||
|
||||
[dev-dependencies]
|
||||
proptest = "1.1.0"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "aiken"
|
||||
description = "Cardano smart contract language and toolchain"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/aiken-lang/aiken"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
@@ -26,7 +26,7 @@ regex = "1.7.1"
|
||||
serde_json = "1.0.94"
|
||||
thiserror = "1.0.39"
|
||||
|
||||
aiken-lang = { path = "../aiken-lang", version = "0.0.29" }
|
||||
aiken-lsp = { path = "../aiken-lsp", version = "0.0.29" }
|
||||
aiken-project = { path = '../aiken-project', version = "0.0.29" }
|
||||
uplc = { path = '../uplc', version = "0.0.29" }
|
||||
aiken-lang = { path = "../aiken-lang", version = "1.0.0-alpha" }
|
||||
aiken-lsp = { path = "../aiken-lsp", version = "1.0.0-alpha" }
|
||||
aiken-project = { path = '../aiken-project', version = "1.0.0-alpha" }
|
||||
uplc = { path = '../uplc', version = "1.0.0-alpha" }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "uplc"
|
||||
description = "Utilities for working with Untyped Plutus Core"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/aiken-lang/aiken/crates/uplc"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
@@ -13,7 +13,6 @@ exclude = ["test_data/*"]
|
||||
[dependencies]
|
||||
anyhow = "1.0.69"
|
||||
cryptoxide = "0.4.4"
|
||||
flat-rs = { path = "../flat-rs", version = "0.0.27" }
|
||||
hex = "0.4.3"
|
||||
indexmap = "1.9.2"
|
||||
itertools = "0.10.5"
|
||||
@@ -37,6 +36,8 @@ strum = "0.24.1"
|
||||
strum_macros = "0.24.3"
|
||||
thiserror = "1.0.39"
|
||||
|
||||
flat-rs = { path = "../flat-rs", version = "0.0.27" }
|
||||
|
||||
[dev-dependencies]
|
||||
hex = "0.4.3"
|
||||
indoc = "2.0.1"
|
||||
|
||||
Reference in New Issue
Block a user