Skip to content

Commit

Permalink
TRUST QA-3: Set correct version (#985)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmrodri authored Oct 24, 2023
1 parent c1e9f04 commit 6bc0b02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/mixins/Versioned.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity 0.8.19;
import "../interfaces/IVersioned.sol";

// This value should be updated on each release
string constant VERSION = "3.0.1";
string constant VERSION = "3.1.0";

/**
* @title Versioned
Expand Down
2 changes: 1 addition & 1 deletion contracts/plugins/assets/VersionedAsset.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity 0.8.19;
import "../../interfaces/IVersioned.sol";

// This value should be updated on each release
string constant ASSET_VERSION = "3.0.1";
string constant ASSET_VERSION = "3.1.0";

/**
* @title VersionedAsset
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const ORACLE_ERROR = fp('0.01') // 1% oracle error
export const REVENUE_HIDING = fp('0') // no revenue hiding by default; test individually

// This will have to be updated on each release
export const VERSION = '3.0.1'
export const VERSION = '3.1.0'

export type Collateral =
| FiatCollateral
Expand Down

0 comments on commit 6bc0b02

Please sign in to comment.