From a5e0da3a498cb5883502a8fe05e16096254ec3ab Mon Sep 17 00:00:00 2001 From: pascal Date: Thu, 3 Oct 2024 00:42:38 +0200 Subject: [PATCH] Bump to v2.0.1 --- CHANGELOG.md | 7 +++++++ src/Scribe.sol | 5 ++++- src/ScribeOptimistic.sol | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84a020a..2e38dbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Common Changelog](https://common-changelog.org/). +[2.0.1]: https://github.com/chronicleprotocol/scribe/releases/tag/v2.0.1 [2.0.0]: https://github.com/chronicleprotocol/scribe/releases/tag/v2.0.0 [1.2.0]: https://github.com/chronicleprotocol/scribe/releases/tag/v1.2.0 [1.1.0]: https://github.com/chronicleprotocol/scribe/releases/tag/v1.1.0 [1.0.0]: https://github.com/chronicleprotocol/scribe/releases/tag/v1.0.0 +## [2.0.1] - 2024-10-03 + +### Added + +- Security notice about rogue key vulnerability during lift and requirement for additional external verification ([0ef985b](https://github.com/chronicleprotocol/scribe/commit/0ef985baebc2945017bff811bb65a883f565fc4f)) + ## [2.0.0] - 2023-11-27 ### Changed diff --git a/src/Scribe.sol b/src/Scribe.sol index 45dd436..567cec4 100644 --- a/src/Scribe.sol +++ b/src/Scribe.sol @@ -12,9 +12,12 @@ import {LibSecp256k1} from "./libs/LibSecp256k1.sol"; /** * @title Scribe - * @custom:version 2.0.0 + * @custom:version 2.0.1 * * @notice Efficient Schnorr multi-signature based Oracle + * + * @author Chronicle Labs, Inc + * @custom:security-contact security@chroniclelabs.org */ contract Scribe is IScribe, Auth, Toll { using LibSchnorr for LibSecp256k1.Point; diff --git a/src/ScribeOptimistic.sol b/src/ScribeOptimistic.sol index a512cee..b3f411f 100644 --- a/src/ScribeOptimistic.sol +++ b/src/ScribeOptimistic.sol @@ -15,6 +15,9 @@ import {LibSecp256k1} from "./libs/LibSecp256k1.sol"; * @title ScribeOptimistic * * @notice Scribe based optimistic Oracle with onchain fault resolution + * + * @author Chronicle Labs, Inc + * @custom:security-contact security@chroniclelabs.org */ contract ScribeOptimistic is IScribeOptimistic, Scribe { using LibSchnorr for LibSecp256k1.Point;