diff --git a/CHANGELOG.md b/CHANGELOG.md index 965e063..2cd440c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -## 1.0.4 - 2023-11-20 +## 1.0.5 - 2023-11-20 -### Fixed +## Fixed +- Readme version + +## 1.0.4 - 2023-11-20 + +## Fixed - Off-by-one when using Pagination::all(). Thanks [SupernaviX](https://github.com/SupernaviX) 💖 +## Added +- Transactions cbor by @SupernaviX in https://github.com/blockfrost/blockfrost-rust/pull/51 + +## Changed +- Rate limit handling by @SupernaviX in https://github.com/blockfrost/blockfrost-rust/pull/52 + ## 1.0.3 - 2023-10-05 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 6909082..e056d7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -84,7 +84,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "blockfrost" -version = "1.0.4" +version = "1.0.5" dependencies = [ "async-trait", "blockfrost-openapi", diff --git a/Cargo.toml b/Cargo.toml index a7528ec..95143f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blockfrost" -version = "1.0.4" +version = "1.0.5" edition = "2021" keywords = ["blockfrost", "blockchain", "cardano", "ipfs", "nft"] categories = ["api-bindings", "asynchronous", "cryptography::cryptocurrencies"] diff --git a/README.md b/README.md index 344adf7..e6bc60c 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ and create a new project to receive an API key. Add to your project's `Cargo.toml`: ```toml -blockfrost = "1.0.4" +blockfrost = "1.0.5" ``` ## Examples