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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ 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.4.0

## Added

- Connections to Tor hidden services possible with Tor proxy
- `Socks5Proxy` newtype introduced
- `peer_info` method introduced
- `chain_tip` method introduced
- `FilterType` enum exposed
- `achow` added to Signet DNS seeds

## Changed

- `AllPeers` transaction broadcast removed
- `example` folder renamed to `examples`
- `corepc-node` updated to `0.10.0`

## Fixes

- `MessageGenerator` made infallible
- V1 transport used when using a Tor proxy

## 0.3.4

## Fixes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bip157"
version = "0.3.4"
version = "0.4.0"
authors = ["Rob <rob@2140.dev>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -13,7 +13,7 @@ rust-version = "1.84.0"

[dependencies]
addrman = { package = "bitcoin-address-book", version = "0.1.1" }
bitcoin = { version = "0.32.7", default-features = false, features = [
bitcoin = { version = "0.32.8", default-features = false, features = [
"rand-std",
] }
bip324 = { version = "0.7.0", default-features = false, features = [
Expand Down
4 changes: 2 additions & 2 deletions src/network/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ pub(crate) mod reader;
pub(crate) mod socks;

pub const PROTOCOL_VERSION: u32 = 70016;
pub const KYOTO_VERSION: &str = "0.3.4";
pub const RUST_BITCOIN_VERSION: &str = "0.32.7";
pub const KYOTO_VERSION: &str = "0.4.0";
pub const RUST_BITCOIN_VERSION: &str = "0.32.8";

const THIRTY_MINS: Duration = Duration::from_secs(60 * 30);
const MESSAGE_TIMEOUT_SECS: Duration = Duration::from_secs(5);
Expand Down