Skip to content

Commit 7193f1c

Browse files
committedMar 30, 2023
Add change log and bump version to v0.8.0
1 parent 7771a3c commit 7193f1c

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed
 

‎CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,40 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [0.8.0] - 2023-03-29
8+
9+
This patch contains a number of bug fixes and enhancements.
10+
11+
**Implemented enhancements and bug fixes:**
12+
13+
- Allow str addresses as change address in txbuilder [\#187](https://github.com/Python-Cardano/pycardano/issues/187)
14+
- Include API responses in submit\_tx method [\#185](https://github.com/Python-Cardano/pycardano/issues/185)
15+
- Specification of the Redeemer Tag necessary? [\#177](https://github.com/Python-Cardano/pycardano/issues/177)
16+
- Error when submit NFT minting tx [\#165](https://github.com/Python-Cardano/pycardano/issues/165)
17+
- Add error handling to blockfrost submit\_tx method [\#188](https://github.com/Python-Cardano/pycardano/pull/188) ([bhatt-deep](https://github.com/bhatt-deep))
18+
- Get UTxO from Transaction ID and Index [\#186](https://github.com/Python-Cardano/pycardano/pull/186) ([juliusfrost](https://github.com/juliusfrost))
19+
- Reference UTxOs are UTxOs \(not TransactionInputs\) [\#181](https://github.com/Python-Cardano/pycardano/pull/181) ([nielstron](https://github.com/nielstron))
20+
- Add support for complex dictionary types [\#180](https://github.com/Python-Cardano/pycardano/pull/180) ([nielstron](https://github.com/nielstron))
21+
- Add functions to automatically add required signers and validity range [\#179](https://github.com/Python-Cardano/pycardano/pull/179) ([nielstron](https://github.com/nielstron))
22+
- Remove the need to specify the RedeemerTag [\#178](https://github.com/Python-Cardano/pycardano/pull/178) ([nielstron](https://github.com/nielstron))
23+
- Fix timezone info for Ogmios backend [\#176](https://github.com/Python-Cardano/pycardano/pull/176) ([juliusfrost](https://github.com/juliusfrost))
24+
- Correctly parse List\[X\] annotated objects [\#170](https://github.com/Python-Cardano/pycardano/pull/170) ([nielstron](https://github.com/nielstron))
25+
- Fixed the plutus script returned by blockfrost https://github.com/Python-Cardano/pycardano/commit/eabd61305ff4c52b8cd4dce3c54171f8e98cb7cf ([cffls](https://github.com/cffls))
26+
- Change plutus example to inline datum and inline script https://github.com/Python-Cardano/pycardano/commit/f5542b45066d1f17d2546be90531898b1ab63d7d. ([cffls](https://github.com/cffls))
27+
- [Bug fix] Force set timezone in system start unix to utc https://github.com/Python-Cardano/pycardano/commit/7771a3cc715ea7fb59900947d70b182db59e84ad ([cffls](https://github.com/cffls))
28+
29+
**Closed issues:**
30+
31+
- Verification and Signing Keys Bug [\#184](https://github.com/Python-Cardano/pycardano/issues/184)
32+
- Error: The seed must be exactly 32 bytes long [\#159](https://github.com/Python-Cardano/pycardano/issues/159)
33+
- Move to hashlib for hashing [\#153](https://github.com/Python-Cardano/pycardano/issues/153)
34+
35+
**Merged pull requests:**
36+
37+
- Update tutorial with renamed smart contract language [\#183](https://github.com/Python-Cardano/pycardano/pull/183) ([nielstron](https://github.com/nielstron))
38+
- Bump blockfrost-python from 0.5.2 to 0.5.3 [\#162](https://github.com/Python-Cardano/pycardano/pull/162) ([dependabot[bot]](https://github.com/apps/dependabot))
39+
40+
741
## [0.7.3] - 2023-02-05
842

943
**Implemented enhancements:**

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pycardano"
3-
version = "0.7.3"
3+
version = "0.8.0"
44
classifiers = [
55
"Intended Audience :: Developers",
66
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)
Please sign in to comment.