Skip to content

Commit

Permalink
chore: preparing package for release (#157)
Browse files Browse the repository at this point in the history
* chore: preparing package for release

* fix: broken links
  • Loading branch information
wei3erHase authored Jul 24, 2024
1 parent e7099e3 commit 5920cd1
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/ISettlement.sol
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion test/integration/BCoWHelper.t.sol
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion test/unit/BCoWHelper.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;

import {Test} from 'forge-std/Test.sol';
Expand Down
2 changes: 1 addition & 1 deletion test/unit/BFactory.t.sol
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion test/unit/BMath.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;

import {BConst} from 'contracts/BConst.sol';
Expand Down
2 changes: 1 addition & 1 deletion test/unit/BNum.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;

import {BConst} from 'contracts/BConst.sol';
Expand Down
2 changes: 1 addition & 1 deletion test/unit/BToken.t.sol
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

0 comments on commit 5920cd1

Please sign in to comment.