Bump versions to 1.0.0-alpha, update CHANGELOG.
This commit is contained in:
parent
00550f8ddb
commit
067e39286d
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [next] - 2023-MM-DD
|
## 1.0.0-alpha - 2023-04-13
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
- **aiken-project**: tests filtering with `-m` during check now happens in `Project::collect_tests`
|
- **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**: 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**: 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
|
- **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**: support multi-clause patterns (only as a syntactic sugar)
|
||||||
- **aiken-lang**: fix lexer panic when parsing too large (> u32) tuple-indexes
|
- **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
|
### Added
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiken"
|
name = "aiken"
|
||||||
version = "0.0.29"
|
version = "1.0.0-alpha"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiken-lang",
|
"aiken-lang",
|
||||||
"aiken-lsp",
|
"aiken-lsp",
|
||||||
|
@ -76,7 +76,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiken-lang"
|
name = "aiken-lang"
|
||||||
version = "0.0.29"
|
version = "1.0.0-alpha"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chumsky",
|
"chumsky",
|
||||||
"hex",
|
"hex",
|
||||||
|
@ -95,7 +95,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiken-lsp"
|
name = "aiken-lsp"
|
||||||
version = "0.0.29"
|
version = "1.0.0-alpha"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiken-lang",
|
"aiken-lang",
|
||||||
"aiken-project",
|
"aiken-project",
|
||||||
|
@ -116,7 +116,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiken-project"
|
name = "aiken-project"
|
||||||
version = "0.0.29"
|
version = "1.0.0-alpha"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiken-lang",
|
"aiken-lang",
|
||||||
"askama",
|
"askama",
|
||||||
|
@ -2777,7 +2777,7 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uplc"
|
name = "uplc"
|
||||||
version = "0.0.29"
|
version = "1.0.0-alpha"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"cryptoxide",
|
"cryptoxide",
|
||||||
|
|
|
@ -132,7 +132,7 @@ EOF
|
||||||
list_versions() {
|
list_versions() {
|
||||||
say "available versions"
|
say "available versions"
|
||||||
curl -sSL "https://api.github.com/repos/aiken-lang/aiken/tags" |
|
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/'
|
sed 's/.*\(v[^"]*\)",.*/\1/'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aiken-lang"
|
name = "aiken-lang"
|
||||||
description = "The Aiken compiler"
|
description = "The Aiken compiler"
|
||||||
version = "0.0.29"
|
version = "1.0.0-alpha"
|
||||||
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"
|
||||||
|
@ -20,9 +20,10 @@ ordinal = "0.3.2"
|
||||||
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
|
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
|
||||||
strum = "0.24.1"
|
strum = "0.24.1"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.39"
|
||||||
uplc = { path = '../uplc', version = "0.0.29" }
|
|
||||||
vec1 = "1.10.1"
|
vec1 = "1.10.1"
|
||||||
|
|
||||||
|
uplc = { path = '../uplc', version = "1.0.0-alpha" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
indoc = "2.0.1"
|
indoc = "2.0.1"
|
||||||
pretty_assertions = "1.3.0"
|
pretty_assertions = "1.3.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aiken-lsp"
|
name = "aiken-lsp"
|
||||||
version = "0.0.29"
|
version = "1.0.0-alpha"
|
||||||
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,6 @@ authors = ["Lucas Rosa <x@rvcas.dev>"]
|
||||||
rust-version = "1.66.1"
|
rust-version = "1.66.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aiken-lang = { path = '../aiken-lang', version = "0.0.29" }
|
|
||||||
aiken-project = { path = '../aiken-project', version = "0.0.29" }
|
|
||||||
crossbeam-channel = "0.5.7"
|
crossbeam-channel = "0.5.7"
|
||||||
indoc = "2.0.1"
|
indoc = "2.0.1"
|
||||||
itertools = "0.10.5"
|
itertools = "0.10.5"
|
||||||
|
@ -25,3 +23,6 @@ thiserror = "1.0.39"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
url = "2.3.1"
|
url = "2.3.1"
|
||||||
urlencoding = "2.1.2"
|
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]
|
[package]
|
||||||
name = "aiken-project"
|
name = "aiken-project"
|
||||||
description = "Aiken project utilities"
|
description = "Aiken project utilities"
|
||||||
version = "0.0.29"
|
version = "1.0.0-alpha"
|
||||||
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"
|
||||||
|
@ -10,7 +10,6 @@ authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>", "Kto
|
||||||
rust-version = "1.66.1"
|
rust-version = "1.66.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aiken-lang = { path = "../aiken-lang", version = "0.0.29" }
|
|
||||||
askama = "0.12.0"
|
askama = "0.12.0"
|
||||||
assert-json-diff = "2.0.2"
|
assert-json-diff = "2.0.2"
|
||||||
dirs = "4.0.0"
|
dirs = "4.0.0"
|
||||||
|
@ -36,9 +35,11 @@ strip-ansi-escapes = "0.1.1"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.39"
|
||||||
tokio = { version = "1.26.0", features = ["full"] }
|
tokio = { version = "1.26.0", features = ["full"] }
|
||||||
toml = "0.7.2"
|
toml = "0.7.2"
|
||||||
uplc = { path = '../uplc', version = "0.0.29" }
|
|
||||||
walkdir = "2.3.2"
|
walkdir = "2.3.2"
|
||||||
zip = "0.6.4"
|
zip = "0.6.4"
|
||||||
|
|
||||||
|
aiken-lang = { path = "../aiken-lang", version = "1.0.0-alpha" }
|
||||||
|
uplc = { path = '../uplc', version = "1.0.0-alpha" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
proptest = "1.1.0"
|
proptest = "1.1.0"
|
||||||
|
|
|
@ -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.29"
|
version = "1.0.0-alpha"
|
||||||
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"
|
||||||
|
@ -26,7 +26,7 @@ regex = "1.7.1"
|
||||||
serde_json = "1.0.94"
|
serde_json = "1.0.94"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.39"
|
||||||
|
|
||||||
aiken-lang = { path = "../aiken-lang", version = "0.0.29" }
|
aiken-lang = { path = "../aiken-lang", version = "1.0.0-alpha" }
|
||||||
aiken-lsp = { path = "../aiken-lsp", version = "0.0.29" }
|
aiken-lsp = { path = "../aiken-lsp", version = "1.0.0-alpha" }
|
||||||
aiken-project = { path = '../aiken-project', version = "0.0.29" }
|
aiken-project = { path = '../aiken-project', version = "1.0.0-alpha" }
|
||||||
uplc = { path = '../uplc', version = "0.0.29" }
|
uplc = { path = '../uplc', version = "1.0.0-alpha" }
|
||||||
|
|
|
@ -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.29"
|
version = "1.0.0-alpha"
|
||||||
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"
|
||||||
|
@ -13,7 +13,6 @@ exclude = ["test_data/*"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.69"
|
anyhow = "1.0.69"
|
||||||
cryptoxide = "0.4.4"
|
cryptoxide = "0.4.4"
|
||||||
flat-rs = { path = "../flat-rs", version = "0.0.27" }
|
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
indexmap = "1.9.2"
|
indexmap = "1.9.2"
|
||||||
itertools = "0.10.5"
|
itertools = "0.10.5"
|
||||||
|
@ -37,6 +36,8 @@ strum = "0.24.1"
|
||||||
strum_macros = "0.24.3"
|
strum_macros = "0.24.3"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.39"
|
||||||
|
|
||||||
|
flat-rs = { path = "../flat-rs", version = "0.0.27" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
indoc = "2.0.1"
|
indoc = "2.0.1"
|
||||||
|
|
Loading…
Reference in New Issue