From 097dc4956e8a64dbac11d802846258ee7683cf80 Mon Sep 17 00:00:00 2001 From: Daira-Emma Hopwood Date: Tue, 27 Aug 2024 17:36:59 +0100 Subject: [PATCH 1/2] Bump protocol version for NU6 testnet. Signed-off-by: Daira-Emma Hopwood --- serialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serialize.h b/serialize.h index 1d0fbc77..2762fc7e 100644 --- a/serialize.h +++ b/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int PROTOCOL_VERSION = 170100; +static const int PROTOCOL_VERSION = 170110; // Used to bypass the rule against non-const reference to temporary // where it makes sense with wrappers such as CFlatData or CTxDB From c81aa16f04c832663e3024ad88e6bd85c32d2f6a Mon Sep 17 00:00:00 2001 From: Daira-Emma Hopwood Date: Tue, 27 Aug 2024 17:37:18 +0100 Subject: [PATCH 2/2] Add `CHANGELOG.md`. Signed-off-by: Daira-Emma Hopwood --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..8ccb508f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +All notable changes to this library will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.1.0] - 2024-08-27 + +### Changed +- The peer protocol version used by the seeder has been updated for the NU6 testnet. +- The README now calls this project `zcash-seeder` rather than `bitcoin-seeder`. + +## [0.0.0] - 2022-12-29 + +There were previously no formal releases. The last change was to update the required +peer protocol version after NU5 activation on mainnet.