Skip to content

Commit

Permalink
refactor: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg committed Mar 3, 2023
1 parent 1c9481e commit 422417d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@prb/proxy",
"description": "Proxy contract to compose Ethereum transactions on behalf of the owner",
"version": "4.0.0-beta.1",
"version": "4.0.0-beta.2",
"author": {
"name": "Paul Razvan Berg",
"url": "https://github.com/PaulRBerg"
Expand Down
2 changes: 1 addition & 1 deletion src/PRBProxyHelpers.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contract PRBProxyHelpers is
//////////////////////////////////////////////////////////////////////////*/

/// @inheritdoc IPRBProxyHelpers
string public constant override VERSION = "4.0.0";
string public constant override VERSION = "4.0.0-beta.2";

/*//////////////////////////////////////////////////////////////////////////
NON-CONSTANT FUNCTIONS
Expand Down
2 changes: 1 addition & 1 deletion src/PRBProxyRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ contract PRBProxyRegistry is IPRBProxyRegistry {
//////////////////////////////////////////////////////////////////////////*/

/// @inheritdoc IPRBProxyRegistry
string public constant override VERSION = "4.0.0";
string public constant override VERSION = "4.0.0-beta.2";

/*//////////////////////////////////////////////////////////////////////////
PUBLIC STORAGE
Expand Down
2 changes: 1 addition & 1 deletion test/registry/version/version.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ contract Version_Test is Registry_Test {
/// @dev it should return the correct version.
function test_Version() external {
string memory actualVersion = registry.VERSION();
string memory expectedVersion = "4.0.0";
string memory expectedVersion = "4.0.0-beta.2";
assertEq(actualVersion, expectedVersion, "VERSION");
}
}

0 comments on commit 422417d

Please sign in to comment.