diff --git a/package.json b/package.json index 90eb4343..3501dc8d 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,17 @@ { - "name": "balancer-core", - "version": "0.0.7", + "name": "balancer-cow-amm", + "version": "1.0.0", "private": true, - "description": "Balancer Core Contracts and ABI", - "homepage": "https://github.com/balancer-labs/balancer-core#readme", + "description": "Balancer CoW AMM", + "homepage": "https://github.com/balancer/cow-amm#readme", "bugs": { - "url": "https://github.com/balancer-labs/balancer-core/issues" + "url": "https://github.com/balancer/cow-amm/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/balancer-labs/balancer-core.git" + "url": "git+https://github.com/balancer/cow-amm.git" }, - "license": "GPL-3.0-only", + "license": "GPL-3.0-or-later", "scripts": { "build": "forge build", "build:optimized": "FOUNDRY_PROFILE=optimized forge build", diff --git a/src/interfaces/ISettlement.sol b/src/interfaces/ISettlement.sol index 1b176cc1..1bcb793a 100644 --- a/src/interfaces/ISettlement.sol +++ b/src/interfaces/ISettlement.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-3.0 +// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.25; import {IERC20} from '@cowprotocol/interfaces/IERC20.sol'; diff --git a/test/integration/BCoWHelper.t.sol b/test/integration/BCoWHelper.t.sol index 7c1fc536..2bd63ab3 100644 --- a/test/integration/BCoWHelper.t.sol +++ b/test/integration/BCoWHelper.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-3.0 +// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import {Test} from 'forge-std/Test.sol'; diff --git a/test/unit/BCoWHelper.t.sol b/test/unit/BCoWHelper.t.sol index ef6d03b5..23964575 100644 --- a/test/unit/BCoWHelper.t.sol +++ b/test/unit/BCoWHelper.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import {Test} from 'forge-std/Test.sol'; diff --git a/test/unit/BFactory.t.sol b/test/unit/BFactory.t.sol index 24e0ed78..698f8823 100644 --- a/test/unit/BFactory.t.sol +++ b/test/unit/BFactory.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import {IERC20} from '@openzeppelin/contracts/token/ERC20/ERC20.sol'; diff --git a/test/unit/BMath.t.sol b/test/unit/BMath.t.sol index ad91456b..96f6b957 100644 --- a/test/unit/BMath.t.sol +++ b/test/unit/BMath.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import {BConst} from 'contracts/BConst.sol'; diff --git a/test/unit/BNum.t.sol b/test/unit/BNum.t.sol index 58041f73..81b6f375 100644 --- a/test/unit/BNum.t.sol +++ b/test/unit/BNum.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import {BConst} from 'contracts/BConst.sol'; diff --git a/test/unit/BToken.t.sol b/test/unit/BToken.t.sol index 1207a294..ce2f54f2 100644 --- a/test/unit/BToken.t.sol +++ b/test/unit/BToken.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import {IERC20} from '@openzeppelin/contracts/interfaces/IERC20.sol';