Bump versions to 1.0.0-alpha, update CHANGELOG.
This commit is contained in:
parent
00550f8ddb
commit
067e39286d
|
@ -1,6 +1,6 @@
|
|||
# Changelog
|
||||
|
||||
## [next] - 2023-MM-DD
|
||||
## 1.0.0-alpha - 2023-04-13
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -10,6 +10,7 @@
|
|||
|
||||
- **aiken-project**: tests filtering with `-m` during check now happens in `Project::collect_tests`
|
||||
- **aiken-project**: fixed generation of blueprints for recursive and mutually recursive data-types
|
||||
- **aiken-project**: perform validation of parameters on `blueprint apply`
|
||||
|
||||
- **aiken-lang**: block `Data` and `String` from unifying when casting
|
||||
- **aiken-lang**: remove ability for a type with many variants with matching field labels and types to support field access
|
||||
|
@ -22,7 +23,9 @@
|
|||
- **aiken-lang**: support multi-clause patterns (only as a syntactic sugar)
|
||||
- **aiken-lang**: fix lexer panic when parsing too large (> u32) tuple-indexes
|
||||
|
||||
## [v0.0.29] - 2023-MM-DD
|
||||
- **uplc**: Greatly improved the Plutus virtual machine performances for script evaluation
|
||||
|
||||
## [v0.0.29] - 2023-02-23
|
||||
|
||||
### Added
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "aiken"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
dependencies = [
|
||||
"aiken-lang",
|
||||
"aiken-lsp",
|
||||
|
@ -76,7 +76,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "aiken-lang"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
dependencies = [
|
||||
"chumsky",
|
||||
"hex",
|
||||
|
@ -95,7 +95,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "aiken-lsp"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
dependencies = [
|
||||
"aiken-lang",
|
||||
"aiken-project",
|
||||
|
@ -116,7 +116,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "aiken-project"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
dependencies = [
|
||||
"aiken-lang",
|
||||
"askama",
|
||||
|
@ -2777,7 +2777,7 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|||
|
||||
[[package]]
|
||||
name = "uplc"
|
||||
version = "0.0.29"
|
||||
version = "1.0.0-alpha"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"cryptoxide",
|
||||
|
|
|
@ -132,7 +132,7 @@ EOF
|
|||
list_versions() {
|
||||
say "available versions"
|
||||
curl -sSL "https://api.github.com/repos/aiken-lang/aiken/tags" |
|
||||
grep -E '"name": "v' |
|
||||
grep -E '"name": "v[1-9]' |
|
||||
sed 's/.*\(v[^"]*\)",.*/\1/'
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue