Revert versions, fix changelog
This commit is contained in:
parent
aabcacbe87
commit
9bbcdfd0b3
|
@ -1,11 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [v0.0.22] - 2022-10-28
|
|
||||||
|
|
||||||
## Added
|
|
||||||
**uplc**: Expose various Pallas primitives from UPLC to make constructing
|
|
||||||
UPLC types possible for consumers
|
|
||||||
|
|
||||||
## [next] - 2022-MM-DD
|
## [next] - 2022-MM-DD
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -14,6 +8,8 @@ UPLC types possible for consumers
|
||||||
**aiken**: Typechecking
|
**aiken**: Typechecking
|
||||||
**aiken**: Inject `aiken/builtin` module with some functions from `DefaultFunction` in UPLC directly exposed
|
**aiken**: Inject `aiken/builtin` module with some functions from `DefaultFunction` in UPLC directly exposed
|
||||||
**aiken-lang**: add `infer` method to `UntypedModule` which returns a `TypedModule`
|
**aiken-lang**: add `infer` method to `UntypedModule` which returns a `TypedModule`
|
||||||
|
**uplc**: Expose various Pallas primitives from UPLC to make constructing
|
||||||
|
UPLC types possible for consumers
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
|
|
@ -1202,7 +1202,7 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uplc"
|
name = "uplc"
|
||||||
version = "0.0.22"
|
version = "0.0.21"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"cryptoxide",
|
"cryptoxide",
|
||||||
|
|
|
@ -19,7 +19,7 @@ pallas-primitives = "0.14.0-alpha.3"
|
||||||
pallas-traverse = "0.14.0-alpha.3"
|
pallas-traverse = "0.14.0-alpha.3"
|
||||||
serde = { version = "1.0.144", features = ["derive"] }
|
serde = { version = "1.0.144", features = ["derive"] }
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.85"
|
||||||
uplc = { path = '../uplc', version = "0.0.22" }
|
uplc = { path = '../uplc', version = "0.0.21" }
|
||||||
aiken-lang = { path = "../lang", version = "0.0.20" }
|
aiken-lang = { path = "../lang", version = "0.0.20" }
|
||||||
toml = "0.5.9"
|
toml = "0.5.9"
|
||||||
walkdir = "2.3.2"
|
walkdir = "2.3.2"
|
||||||
|
|
|
@ -17,7 +17,7 @@ itertools = "0.10.5"
|
||||||
miette = "5.2.0"
|
miette = "5.2.0"
|
||||||
strum = "0.24.1"
|
strum = "0.24.1"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.37"
|
||||||
uplc = { path = '../uplc', version = "0.0.22" }
|
uplc = { path = '../uplc', version = "0.0.21" }
|
||||||
vec1 = "1.8.0"
|
vec1 = "1.8.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -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.22"
|
version = "0.0.21"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/txpipe/aiken/crates/uplc"
|
repository = "https://github.com/txpipe/aiken/crates/uplc"
|
||||||
homepage = "https://github.com/txpipe/aiken"
|
homepage = "https://github.com/txpipe/aiken"
|
||||||
|
|
Loading…
Reference in New Issue