Skip to content

Commit

Permalink
Bump to v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pmerkleplant committed Oct 3, 2024
1 parent 05a60a5 commit a5e0da3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion src/Scribe.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]
*/
contract Scribe is IScribe, Auth, Toll {
using LibSchnorr for LibSecp256k1.Point;
Expand Down
3 changes: 3 additions & 0 deletions src/ScribeOptimistic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]
*/
contract ScribeOptimistic is IScribeOptimistic, Scribe {
using LibSchnorr for LibSecp256k1.Point;
Expand Down

0 comments on commit a5e0da3

Please sign in to comment.