From a8f5bac4498bdef835863c24086263f30f05bf94 Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Sun, 23 Jun 2024 21:13:58 -0300 Subject: [PATCH] chore: Release dolos version 0.10.0 --- CHANGELOG.md | 41 +++++++++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 43 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d801644..dbcd2a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,46 @@ All notable changes to this project will be documented in this file. +## [0.10.0] - 2024-06-24 + +### ๐Ÿš€ Features + +- Implement input resolver for gRPC endpoint (#149) +- Implement utxorpc watch module (#270) +- Integrate tokio traces & debug console (#275) +- *(storage)* Allow configurable cache size (#277) + +### ๐Ÿ› Bug Fixes + +- Handle SIGTERM for graceful shutdown (#273) +- *(grpc)* Avoid panic in hash value parsing (#274) + +### ๐Ÿšœ Refactor + +- *(grpc)* Improve sync mapping (#276) + +### ๐Ÿ“š Documentation + +- Improve configuration docs (#260) +- Add bootstrap instructions (#261) +- Add quickstart guide (#262) +- Improve running instructions (#263) +- Improve API documentation (#264) +- Document latest config changes (#279) + +### ๐Ÿ”ง Continuous Integration + +- Remove mdbook workflow (#203) + +### ๐Ÿงช Testing + +- Implement pparams testing (#217) + +### โš™๏ธ Miscellaneous Tasks + +- Update Pallas to v0.27 (#265) +- Reset example configs (#269) + ## [0.9.0] - 2024-05-28 ### ๐Ÿš€ Features @@ -52,6 +92,7 @@ All notable changes to this project will be documented in this file. - Exclude heavy features from Pallas (#257) - Move release config to cargo toml (#258) - Update example config files (#259) +- Release dolos version 0.9.0 ## [0.8.0] - 2024-05-18 diff --git a/Cargo.lock b/Cargo.lock index d2901f86..a9de7526 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -877,7 +877,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "dolos" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-stream", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index e0726fb6..ade0c0b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dolos" description = "A Cardano data-node built in Rust" -version = "0.9.0" +version = "0.10.0" edition = "2021" repository = "https://github.com/txpipe/dolos" homepage = "https://github.com/txpipe/dolos"