Skip to content

Commit a5e0da3

Browse files
committed
Bump to v2.0.1
1 parent 05a60a5 commit a5e0da3

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,18 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Common Changelog](https://common-changelog.org/).
66

7+
[2.0.1]: https://github.com/chronicleprotocol/scribe/releases/tag/v2.0.1
78
[2.0.0]: https://github.com/chronicleprotocol/scribe/releases/tag/v2.0.0
89
[1.2.0]: https://github.com/chronicleprotocol/scribe/releases/tag/v1.2.0
910
[1.1.0]: https://github.com/chronicleprotocol/scribe/releases/tag/v1.1.0
1011
[1.0.0]: https://github.com/chronicleprotocol/scribe/releases/tag/v1.0.0
1112

13+
## [2.0.1] - 2024-10-03
14+
15+
### Added
16+
17+
- Security notice about rogue key vulnerability during lift and requirement for additional external verification ([0ef985b](https://github.com/chronicleprotocol/scribe/commit/0ef985baebc2945017bff811bb65a883f565fc4f))
18+
1219
## [2.0.0] - 2023-11-27
1320

1421
### Changed

Diff for: src/Scribe.sol

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ import {LibSecp256k1} from "./libs/LibSecp256k1.sol";
1212

1313
/**
1414
* @title Scribe
15-
* @custom:version 2.0.0
15+
* @custom:version 2.0.1
1616
*
1717
* @notice Efficient Schnorr multi-signature based Oracle
18+
*
19+
* @author Chronicle Labs, Inc
20+
* @custom:security-contact [email protected]
1821
*/
1922
contract Scribe is IScribe, Auth, Toll {
2023
using LibSchnorr for LibSecp256k1.Point;

Diff for: src/ScribeOptimistic.sol

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ import {LibSecp256k1} from "./libs/LibSecp256k1.sol";
1515
* @title ScribeOptimistic
1616
*
1717
* @notice Scribe based optimistic Oracle with onchain fault resolution
18+
*
19+
* @author Chronicle Labs, Inc
20+
* @custom:security-contact [email protected]
1821
*/
1922
contract ScribeOptimistic is IScribeOptimistic, Scribe {
2023
using LibSchnorr for LibSecp256k1.Point;

0 commit comments

Comments
 (0)