Skip to content

Commit 67e41d0

Browse files
committed
chore(flow,utils): correct versions from package.json
1 parent 98ffd00 commit 67e41d0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

flow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@sablier/flow",
33
"description": "EVM smart contracts of the Sablier Flow token distribution protocol",
44
"license": "SEE LICENSE IN LICENSE",
5-
"version": "2.1.0",
5+
"version": "3.0.0",
66
"author": {
77
"name": "Sablier Labs Ltd",
88
"url": "https://sablier.com"

flow/tests/utils/BaseScript.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ contract BaseScript_Test is StdAssertions {
1818

1919
function test_ConstructCreate2Salt() public view {
2020
string memory chainId = block.chainid.toString();
21-
string memory version = "2.1.0";
21+
string memory version = "3.0.0";
2222
string memory salt = string.concat("ChainID ", chainId, ", Version ", version);
2323

2424
bytes32 actualSalt = baseScript.SALT();

utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@sablier/evm-utils",
33
"description": "Utilities solidity files used across Sablier's smart contracts",
44
"license": "SEE LICENSE IN LICENSE",
5-
"version": "1.1.0",
5+
"version": "2.0.0",
66
"author": {
77
"name": "Sablier Labs Ltd",
88
"url": "https://sablier.com"

utils/tests/integration/fuzz/base-script/BaseScript.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { BaseScriptMock } from "tests/mocks/BaseScriptMock.sol";
1010
contract BaseScript_Fuzz_Test is StdAssertions {
1111
BaseScriptMock internal baseScript;
1212

13-
string public constant PACKAGE_VERSION = "1.1.0";
13+
string public constant PACKAGE_VERSION = "2.0.0";
1414

1515
Vm internal vm = StdConstants.VM;
1616

0 commit comments

Comments
 (0)