Skip to content

Commit f29c869

Browse files
authored
Merge pull request #62 from mlabs-haskell/szg251/fix-typos
Fix V3 typos
2 parents 4e316ed + 32a0d69 commit f29c869

File tree

15 files changed

+126
-90
lines changed

15 files changed

+126
-90
lines changed

plutus-ledger-api/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
<!-- markdownlint-disable MD024 -->
2+
23
# Changelog
34

45
This changelog is based on [Keep A
56
Changelog](https://keepachangelog.com/en/1.1.0).
67

8+
## v3.0.0
9+
10+
### Changed
11+
12+
- Fixed typos in V3 types
13+
- Fixed Display alternative implementations
14+
715
## v2.1.0
816

917
### Added

plutus-ledger-api/Cargo.lock

Lines changed: 45 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plutus-ledger-api/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plutus-ledger-api"
3-
version = "2.1.0"
3+
version = "3.0.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Plutus Ledger types and utilities implemented in Rust"
@@ -9,20 +9,20 @@ repository = "https://github.com/mlabs-haskell/plutus-ledger-api-rust"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
proptest = "^1.3.1"
13-
lbr-prelude = { version = "0.1.1", optional = true }
14-
serde_json = { version = "1.0.128", optional = true }
12+
proptest = "^1.5.0"
13+
lbr-prelude = { version = "0.1.3", optional = true }
14+
serde_json = { version = "1.0.133", optional = true }
1515
num-bigint = "~0.4"
16-
serde = { version = "^1.0.189", features = ["derive"], optional = true }
17-
data-encoding = "^2.4.0"
18-
thiserror = "^1.0.50"
16+
serde = { version = "^1.0.215", features = ["derive"], optional = true }
17+
data-encoding = "^2.6.0"
18+
thiserror = "^1.0.69"
1919
linked-hash-map = "~0.5.6"
20-
num-traits = "~0.2.17"
20+
num-traits = "~0.2.19"
2121
impl_ops = "0.1.1"
22-
chrono = { version = "0.4.34", optional = true }
23-
cardano-serialization-lib = "13.1.0"
22+
chrono = { version = "0.4.39", optional = true }
23+
cardano-serialization-lib = "13.2.0"
2424
is-plutus-data-derive = { version = "1.0.0", path = ".extras/is-plutus-data-derive-0" }
25-
anyhow = "1.0.86"
25+
anyhow = "1.0.94"
2626
nom = "7.1.3"
2727

2828
[features]

0 commit comments

Comments
 (0)