Skip to content

Commit

Permalink
chore(sol): bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmichalis committed Jun 10, 2024
1 parent 8e1b3b1 commit 9732dc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/FeeCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ contract FeeCalculator is IFeeCalculator, Ownable {
/// @dev Version-related parameters. VERSION keeps track of production
/// releases. VERSION_RELEASE_CANDIDATE keeps track of iterations
/// of a VERSION in our staging environment.
string public constant VERSION = "1.0.0";
string public constant VERSION = "1.1.0";
uint256 public constant VERSION_RELEASE_CANDIDATE = 1;

SD59x18 private _zero = sd(0);
Expand Down
2 changes: 1 addition & 1 deletion src/FlatFeeCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ contract FlatFeeCalculator is IFeeCalculator, Ownable {
/// releases. VERSION_RELEASE_CANDIDATE keeps track of iterations
/// of a VERSION in our staging environment.
string public constant VERSION = "1.0.0";
uint256 public constant VERSION_RELEASE_CANDIDATE = 1;
uint256 public constant VERSION_RELEASE_CANDIDATE = 2;

uint256 public feeBasisPoints = 300;

Expand Down

0 comments on commit 9732dc6

Please sign in to comment.