Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ Notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.8.0

## Added

- Request the broadcast minimum fee rate from connected peers.

## Changed

- Removed the `StatelessPeerStore`, used primarily for development
- Export the `tokio` crate
- Further split `Log` and `Event` enumerations into `Log`, `Warning`, and `Event`

## Fixes

- Update the port and services when peers are gossiped
- Reset the timer after disconnecting from peers due to a stale block
- Remove case for invalid median time check

## 0.7.0

## Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kyoto-cbf"
version = "0.7.0"
version = "0.8.0"
authors = ["Rob <rustaceanrob@protonmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
Loading