From 6f60ea317bd472b119c9afe5827bcfcd68a19480 Mon Sep 17 00:00:00 2001 From: Mantre Date: Tue, 16 Jan 2024 15:21:58 +0800 Subject: [PATCH] chore: releasing version 0.20.1 (#940) --- CHANGELOG.md | 6 ++++++ version/version.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0e3d2515..a69d29403 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.20.1](https://github.com/pactus-project/pactus/compare/v0.20.0...v0.20.1) (2024-01-16) + +### Fix + +- **consensus**: detect if the system time is behind the network ([#939](https://github.com/pactus-project/pactus/pull/939)) + ## [0.20.0](https://github.com/pactus-project/pactus/compare/v0.19.0...v0.20.0) (2024-01-11) ### Feat diff --git a/version/version.go b/version/version.go index 3cecc7442..4fa42b2b3 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ import ( const ( major uint = 0 minor uint = 20 - patch uint = 0 + patch uint = 1 meta string = "" protocolVersion uint = 1 )