From feb840bef2f5db36c66565975b22d9d276c4432e Mon Sep 17 00:00:00 2001 From: Eddy Ashton Date: Wed, 22 Jan 2025 13:36:05 +0000 Subject: [PATCH] Prepare release notes for `6.0.0-dev13` (#6771) --- CHANGELOG.md | 12 ++++++++---- python/pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8309d3a7084..e1c343a5b9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres Fto [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [6.0.0-dev13] + +[6.0.0-dev13]: https://github.com/microsoft/CCF/releases/tag/6.0.0-dev13 + +### Added + +- Joining nodes can now request a snapshot from their peers at startup, rather than relying on file access. The joinee's snapshot will be fetched and used if it is more recent than the joiner has access to. This behaviour is enabled by default, but can be disabled via the `command.join.fetch_recent_snapshot` config option (#6758). + ## [6.0.0-dev12] [6.0.0-dev12]: https://github.com/microsoft/CCF/releases/tag/6.0.0-dev12 @@ -14,10 +22,6 @@ and this project adheres Fto [Semantic Versioning](http://semver.org/spec/v2.0.0 - nghttp2 is now picked up from the OS rather than vendored to enable libcurl usage - Misc dependency updates (#6725) -### Added - -- Joining nodes can now request a snapshot from their peers at startup, rather than relying on file access. The joinee's snapshot will be fetched and used if it is more recent than the joiner has access to (#6758). - ## [6.0.0-dev11] [6.0.0-dev11]: https://github.com/microsoft/CCF/releases/tag/6.0.0-dev11 diff --git a/python/pyproject.toml b/python/pyproject.toml index 5df352ad5b4..55a314583fb 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ccf" -version = "6.0.0-dev12" +version = "6.0.0-dev13" authors = [ { name="CCF Team", email="CCF-Sec@microsoft.com" }, ]