Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v2.0.1 #55

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading