From 6237fdd758cd6cc7d57eb2a02f46aa4c1dfabe12 Mon Sep 17 00:00:00 2001 From: Eddy Ashton Date: Wed, 22 Jan 2025 11:02:42 +0000 Subject: [PATCH 1/2] Correct CHANGELOG --- CHANGELOG.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 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 From d0ff30e893947be99815ceb6d2ed4cdc37a56de9 Mon Sep 17 00:00:00 2001 From: Eddy Ashton Date: Wed, 22 Jan 2025 11:03:26 +0000 Subject: [PATCH 2/2] Tryna catch me slippin' --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }, ]