From d9c131a920212bcc5191aec7b9da7f3cb6a58a97 Mon Sep 17 00:00:00 2001 From: Jerry Date: Sun, 13 Mar 2022 11:37:27 -0700 Subject: [PATCH] Bump version to v0.2.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 568a071f..4400fbc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ 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.2.0] - 2022-03-13 + +This release added essential features for Plutus script interactions. + +### Added + +- Plutus data + - Serialization, deserialization, and customization of plutus data and redeemer + - Plutus cost model + - Calculation of script data hash + - JSON compatibility +- Extended key support + +### Changed + +- Sort multi-assets based on policy id and asset names + +### Fixed + +- Fail tx builder when input amount is not enough to cover outputs and tx fee + + ## [0.1.2] - 2022-02-20 diff --git a/pyproject.toml b/pyproject.toml index b8e06fa8..e6e01158 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycardano" -version = "0.1.2" +version = "0.2.0" classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License",