From ca9a5db2f63e32d334e1f19a86ef8cb272667bf5 Mon Sep 17 00:00:00 2001 From: Jerry Date: Sun, 28 Aug 2022 13:53:45 -0700 Subject: [PATCH] v0.6.0 release --- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a23a9ab..1045847a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.6.0] - 2022-08-28 + +`v0.6.0` is update for Vasil hard fork. + +### Added +- Support for reference inputs ([CIP31](https://github.com/cardano-foundation/CIPs/tree/master/CIP-0031)). +- Support for inline datum ([CIP32](https://github.com/cardano-foundation/CIPs/tree/master/CIP-0032)). +- Support for reference scripts ([CIP33](https://github.com/cardano-foundation/CIPs/tree/master/CIP-0033)). +- Vasil changes for Ogmios. +- Vasil changes for blockforst. +- Add type "RawPlutusData", which is used as the default type for datum deserialized from cbor. +- `TransactionOutput` now has two new fields, `datum` and `script`, which could be added to the transaction output. +- Blockfrost chain context now supports custom API url. + +## Changed +- Improved the format of transaction representation. +- Method `add_script_input` in `TransactionBuilder` no longer requires `script` field to be set. +If absent, the transaction builder will try to find it from chain context. +- Similarly, method `add_minting_script` in `TransactionBuilder` no longer requires `script` field to be set. +If absent, the transaction builder will try to find it from chain context. ## [0.5.1] - 2022-07-09 diff --git a/pyproject.toml b/pyproject.toml index c2cb9d42..f3a7de1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycardano" -version = "0.5.1" +version = "0.6.0" classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License",