Updated CHANGELOGS & MD docs

This commit is contained in:
Github Actions 2022-10-11 23:45:49 +00:00
parent 0cc2cdd16e
commit 69f8fd39f7
19 changed files with 100 additions and 5 deletions

View File

@ -1,4 +1,13 @@
[ [
{
"timestamp": 1665531940,
"version": "3.3.46",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{ {
"version": "3.3.45", "version": "3.3.45",
"changes": [ "changes": [

View File

@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v3.3.46 - _October 11, 2022_
* Dependencies updated
## v3.3.45 - _October 5, 2022_ ## v3.3.45 - _October 5, 2022_
* Migrate from TSLint to ESLint and fix linting errors (#589) * Migrate from TSLint to ESLint and fix linting errors (#589)

View File

@ -15,7 +15,7 @@ export const artifacts = {
DummyERC20Token: DummyERC20Token as ContractArtifact, DummyERC20Token: DummyERC20Token as ContractArtifact,
ERC20Token: ERC20Token as ContractArtifact, ERC20Token: ERC20Token as ContractArtifact,
WETH9: WETH9 as ContractArtifact, WETH9: WETH9 as ContractArtifact,
ZRXToken: ZRXToken as any as ContractArtifact, ZRXToken: (ZRXToken as any) as ContractArtifact,
DummyNoReturnERC20Token: DummyNoReturnERC20Token as ContractArtifact, DummyNoReturnERC20Token: DummyNoReturnERC20Token as ContractArtifact,
DummyMultipleReturnERC20Token: DummyMultipleReturnERC20Token as ContractArtifact, DummyMultipleReturnERC20Token: DummyMultipleReturnERC20Token as ContractArtifact,
}; };

View File

@ -28,7 +28,7 @@ export const artifacts = {
MintableERC20Token: MintableERC20Token as ContractArtifact, MintableERC20Token: MintableERC20Token as ContractArtifact,
UnlimitedAllowanceERC20Token: UnlimitedAllowanceERC20Token as ContractArtifact, UnlimitedAllowanceERC20Token: UnlimitedAllowanceERC20Token as ContractArtifact,
WETH9: WETH9 as ContractArtifact, WETH9: WETH9 as ContractArtifact,
ZRXToken: ZRXToken as any as ContractArtifact, ZRXToken: (ZRXToken as any) as ContractArtifact,
IERC20Token: IERC20Token as ContractArtifact, IERC20Token: IERC20Token as ContractArtifact,
IEtherToken: IEtherToken as ContractArtifact, IEtherToken: IEtherToken as ContractArtifact,
IERC20TokenV06: IERC20TokenV06 as ContractArtifact, IERC20TokenV06: IERC20TokenV06 as ContractArtifact,

View File

@ -1,4 +1,13 @@
[ [
{
"timestamp": 1665531940,
"version": "5.4.37",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{ {
"version": "5.4.36", "version": "5.4.36",
"changes": [ "changes": [

View File

@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v5.4.37 - _October 11, 2022_
* Dependencies updated
## v5.4.36 - _October 5, 2022_ ## v5.4.36 - _October 5, 2022_
* Migrate from TSLint to ESLint and fix linting errors (#589) * Migrate from TSLint to ESLint and fix linting errors (#589)

View File

@ -1,4 +1,13 @@
[ [
{
"timestamp": 1665531940,
"version": "1.4.29",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{ {
"version": "1.4.28", "version": "1.4.28",
"changes": [ "changes": [

View File

@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v1.4.29 - _October 11, 2022_
* Dependencies updated
## v1.4.28 - _October 5, 2022_ ## v1.4.28 - _October 5, 2022_
* Migrate from TSLint to ESLint and fix linting errors (#589) * Migrate from TSLint to ESLint and fix linting errors (#589)

View File

@ -1,4 +1,13 @@
[ [
{
"timestamp": 1665531940,
"version": "4.8.27",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{ {
"version": "4.8.26", "version": "4.8.26",
"changes": [ "changes": [

View File

@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v4.8.27 - _October 11, 2022_
* Dependencies updated
## v4.8.26 - _October 5, 2022_ ## v4.8.26 - _October 5, 2022_
* Migrate from TSLint to ESLint and fix linting errors (#589) * Migrate from TSLint to ESLint and fix linting errors (#589)

View File

@ -1,4 +1,13 @@
[ [
{
"timestamp": 1665531940,
"version": "0.37.6",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{ {
"version": "0.37.5", "version": "0.37.5",
"changes": [ "changes": [

View File

@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v0.37.6 - _October 11, 2022_
* Dependencies updated
## v0.37.5 - _October 5, 2022_ ## v0.37.5 - _October 5, 2022_
* Migrate from TSLint to ESLint and fix linting errors (#587) * Migrate from TSLint to ESLint and fix linting errors (#587)

View File

@ -389,8 +389,7 @@ export const artifacts = {
TestNoEthRecipient: TestNoEthRecipient as ContractArtifact, TestNoEthRecipient: TestNoEthRecipient as ContractArtifact,
TestOrderSignerRegistryWithContractWallet: TestOrderSignerRegistryWithContractWallet as ContractArtifact, TestOrderSignerRegistryWithContractWallet: TestOrderSignerRegistryWithContractWallet as ContractArtifact,
TestPermissionlessTransformerDeployerSuicidal: TestPermissionlessTransformerDeployerSuicidal as ContractArtifact, TestPermissionlessTransformerDeployerSuicidal: TestPermissionlessTransformerDeployerSuicidal as ContractArtifact,
TestPermissionlessTransformerDeployerTransformer: TestPermissionlessTransformerDeployerTransformer: TestPermissionlessTransformerDeployerTransformer as ContractArtifact,
TestPermissionlessTransformerDeployerTransformer as ContractArtifact,
TestPropertyValidator: TestPropertyValidator as ContractArtifact, TestPropertyValidator: TestPropertyValidator as ContractArtifact,
TestRfqOriginRegistration: TestRfqOriginRegistration as ContractArtifact, TestRfqOriginRegistration: TestRfqOriginRegistration as ContractArtifact,
TestSimpleFunctionRegistryFeatureImpl1: TestSimpleFunctionRegistryFeatureImpl1 as ContractArtifact, TestSimpleFunctionRegistryFeatureImpl1: TestSimpleFunctionRegistryFeatureImpl1 as ContractArtifact,

View File

@ -6,7 +6,8 @@
"note": "Remove Ropsten and Rinkeby addresses", "note": "Remove Ropsten and Rinkeby addresses",
"pr": 597 "pr": 597
} }
] ],
"timestamp": 1665531940
}, },
{ {
"version": "6.24.0", "version": "6.24.0",

View File

@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v6.25.0 - _October 11, 2022_
* Remove Ropsten and Rinkeby addresses (#597)
## v6.24.0 - _October 5, 2022_ ## v6.24.0 - _October 5, 2022_
* Add missing zeroExGovernor for Arbitrum (#583) * Add missing zeroExGovernor for Arbitrum (#583)

View File

@ -1,4 +1,13 @@
[ [
{
"timestamp": 1665531940,
"version": "13.22.6",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{ {
"timestamp": 1665013355, "timestamp": 1665013355,
"version": "13.22.5", "version": "13.22.5",

View File

@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v13.22.6 - _October 11, 2022_
* Dependencies updated
## v13.22.5 - _October 5, 2022_ ## v13.22.5 - _October 5, 2022_
* Dependencies updated * Dependencies updated

View File

@ -1,4 +1,13 @@
[ [
{
"timestamp": 1665531940,
"version": "11.16.13",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{ {
"version": "11.16.12", "version": "11.16.12",
"changes": [ "changes": [

View File

@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v11.16.13 - _October 11, 2022_
* Dependencies updated
## v11.16.12 - _October 5, 2022_ ## v11.16.12 - _October 5, 2022_
* tslint -> eslint (#582) * tslint -> eslint (#582)