From 03b2e4c5b76d1a5d8d3c991392b163e14c4221c3 Mon Sep 17 00:00:00 2001 From: J M Rossy Date: Mon, 24 Oct 2022 13:19:01 -0400 Subject: [PATCH] 0.5.1 (#1167) * Bump versions to 0.5.1 * Export Mainnets list properly in SDK --- solidity/app/package.json | 6 ++--- solidity/core/package.json | 4 +-- typescript/helloworld/package.json | 6 ++--- typescript/ica/package.json | 8 +++--- typescript/infra/package.json | 10 +++---- typescript/sdk/package.json | 8 +++--- typescript/sdk/src/index.ts | 2 +- typescript/utils/package.json | 2 +- yarn.lock | 42 +++++++++++++++--------------- 9 files changed, 44 insertions(+), 44 deletions(-) diff --git a/solidity/app/package.json b/solidity/app/package.json index 3120dc8992..24cfb1af1e 100644 --- a/solidity/app/package.json +++ b/solidity/app/package.json @@ -1,10 +1,10 @@ { "name": "@hyperlane-xyz/app", "description": "Solidity contracts for Hyperlane apps", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { - "@hyperlane-xyz/core": "0.5.0", - "@hyperlane-xyz/utils": "0.5.0", + "@hyperlane-xyz/core": "0.5.1", + "@hyperlane-xyz/utils": "0.5.1", "@openzeppelin/contracts-upgradeable": "^4.5.0" }, "devDependencies": { diff --git a/solidity/core/package.json b/solidity/core/package.json index 295395eb17..bb1daa6bc1 100644 --- a/solidity/core/package.json +++ b/solidity/core/package.json @@ -1,9 +1,9 @@ { "name": "@hyperlane-xyz/core", "description": "Core solidity contracts for Hyperlane", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { - "@hyperlane-xyz/utils": "0.5.0", + "@hyperlane-xyz/utils": "0.5.1", "@openzeppelin/contracts": "^4.6.0", "@openzeppelin/contracts-upgradeable": "^4.6.0" }, diff --git a/typescript/helloworld/package.json b/typescript/helloworld/package.json index d7c0fd9be0..2e4aef9008 100644 --- a/typescript/helloworld/package.json +++ b/typescript/helloworld/package.json @@ -1,10 +1,10 @@ { "name": "@hyperlane-xyz/helloworld", "description": "A basic skeleton of an Hyperlane app", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { - "@hyperlane-xyz/sdk": "^0.5.0", - "@hyperlane-xyz/utils": "^0.5.0", + "@hyperlane-xyz/sdk": "^0.5.1", + "@hyperlane-xyz/utils": "^0.5.1", "@openzeppelin/contracts-upgradeable": "^4.6.0", "ethers": "^5.6.8" }, diff --git a/typescript/ica/package.json b/typescript/ica/package.json index cb3670fc7c..ba904ce172 100644 --- a/typescript/ica/package.json +++ b/typescript/ica/package.json @@ -1,11 +1,11 @@ { "name": "@hyperlane-xyz/interchain-accounts", "description": "A router middleware for interchain accounts", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { - "@hyperlane-xyz/app": "0.5.0", - "@hyperlane-xyz/sdk": "0.5.0", - "@hyperlane-xyz/utils": "0.5.0", + "@hyperlane-xyz/app": "0.5.1", + "@hyperlane-xyz/sdk": "0.5.1", + "@hyperlane-xyz/utils": "0.5.1", "@openzeppelin/contracts-upgradeable": "^4.6.0", "ethers": "^5.6.8" }, diff --git a/typescript/infra/package.json b/typescript/infra/package.json index d1f547f2cd..659da84b4b 100644 --- a/typescript/infra/package.json +++ b/typescript/infra/package.json @@ -1,7 +1,7 @@ { "name": "@hyperlane-xyz/infra", "description": "Infrastructure utilities for the Hyperlane Network", - "version": "0.5.0-beta0", + "version": "0.5.1", "dependencies": { "@aws-sdk/client-iam": "^3.74.0", "@aws-sdk/client-kms": "3.48.0", @@ -12,10 +12,10 @@ "@gnosis.pm/safe-ethers-lib": "^1.4.0", "@gnosis.pm/safe-service-client": "^1.2.0", "@hyperlane-xyz/celo-ethers-provider": "^0.1.1", - "@hyperlane-xyz/helloworld": "0.5.0", - "@hyperlane-xyz/interchain-accounts": "0.5.0", - "@hyperlane-xyz/sdk": "0.5.0", - "@hyperlane-xyz/utils": "0.5.0", + "@hyperlane-xyz/helloworld": "0.5.1", + "@hyperlane-xyz/interchain-accounts": "0.5.1", + "@hyperlane-xyz/sdk": "0.5.1", + "@hyperlane-xyz/utils": "0.5.1", "@nomiclabs/hardhat-etherscan": "^3.0.3", "asn1.js": "5.4.1", "aws-kms-ethers-signer": "^0.1.3", diff --git a/typescript/sdk/package.json b/typescript/sdk/package.json index a0dba4864f..d0b1ee5081 100644 --- a/typescript/sdk/package.json +++ b/typescript/sdk/package.json @@ -1,12 +1,12 @@ { "name": "@hyperlane-xyz/sdk", "description": "The official SDK for the Hyperlane Network", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { - "@hyperlane-xyz/app": "0.5.0", + "@hyperlane-xyz/app": "0.5.1", "@hyperlane-xyz/celo-ethers-provider": "^0.1.1", - "@hyperlane-xyz/core": "0.5.0", - "@hyperlane-xyz/utils": "0.5.0", + "@hyperlane-xyz/core": "0.5.1", + "@hyperlane-xyz/utils": "0.5.1", "@types/debug": "^4.1.7", "coingecko-api": "^1.0.10", "cross-fetch": "^3.1.5", diff --git a/typescript/sdk/src/index.ts b/typescript/sdk/src/index.ts index ea0dce66e1..b68577905e 100644 --- a/typescript/sdk/src/index.ts +++ b/typescript/sdk/src/index.ts @@ -1,4 +1,4 @@ -export { AllChains, Chains } from './consts/chains'; +export { AllChains, Chains, Mainnets } from './consts/chains'; export { chainMetadata } from './consts/chainMetadata'; export { chainConnectionConfigs, diff --git a/typescript/utils/package.json b/typescript/utils/package.json index c170b4db6e..18ab77b52c 100644 --- a/typescript/utils/package.json +++ b/typescript/utils/package.json @@ -1,7 +1,7 @@ { "name": "@hyperlane-xyz/utils", "description": "General utilities for the Hyperlane network", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { "ethers": "^5.6.8" }, diff --git a/yarn.lock b/yarn.lock index 67c87f78e4..79b6e1d9e3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3677,12 +3677,12 @@ __metadata: languageName: node linkType: hard -"@hyperlane-xyz/app@0.5.0, @hyperlane-xyz/app@workspace:solidity/app": +"@hyperlane-xyz/app@0.5.1, @hyperlane-xyz/app@workspace:solidity/app": version: 0.0.0-use.local resolution: "@hyperlane-xyz/app@workspace:solidity/app" dependencies: - "@hyperlane-xyz/core": 0.5.0 - "@hyperlane-xyz/utils": 0.5.0 + "@hyperlane-xyz/core": 0.5.1 + "@hyperlane-xyz/utils": 0.5.1 "@nomiclabs/hardhat-ethers": ^2.0.5 "@nomiclabs/hardhat-waffle": ^2.0.2 "@openzeppelin/contracts-upgradeable": ^4.5.0 @@ -3714,11 +3714,11 @@ __metadata: languageName: node linkType: hard -"@hyperlane-xyz/core@0.5.0, @hyperlane-xyz/core@workspace:solidity/core": +"@hyperlane-xyz/core@0.5.1, @hyperlane-xyz/core@workspace:solidity/core": version: 0.0.0-use.local resolution: "@hyperlane-xyz/core@workspace:solidity/core" dependencies: - "@hyperlane-xyz/utils": 0.5.0 + "@hyperlane-xyz/utils": 0.5.1 "@nomiclabs/hardhat-ethers": ^2.0.5 "@nomiclabs/hardhat-waffle": ^2.0.2 "@openzeppelin/contracts": ^4.6.0 @@ -3741,12 +3741,12 @@ __metadata: languageName: unknown linkType: soft -"@hyperlane-xyz/helloworld@0.5.0, @hyperlane-xyz/helloworld@workspace:typescript/helloworld": +"@hyperlane-xyz/helloworld@0.5.1, @hyperlane-xyz/helloworld@workspace:typescript/helloworld": version: 0.0.0-use.local resolution: "@hyperlane-xyz/helloworld@workspace:typescript/helloworld" dependencies: - "@hyperlane-xyz/sdk": ^0.5.0 - "@hyperlane-xyz/utils": ^0.5.0 + "@hyperlane-xyz/sdk": ^0.5.1 + "@hyperlane-xyz/utils": ^0.5.1 "@nomiclabs/hardhat-ethers": ^2.0.5 "@nomiclabs/hardhat-waffle": ^2.0.2 "@openzeppelin/contracts-upgradeable": ^4.6.0 @@ -3787,10 +3787,10 @@ __metadata: "@gnosis.pm/safe-ethers-lib": ^1.4.0 "@gnosis.pm/safe-service-client": ^1.2.0 "@hyperlane-xyz/celo-ethers-provider": ^0.1.1 - "@hyperlane-xyz/helloworld": 0.5.0 - "@hyperlane-xyz/interchain-accounts": 0.5.0 - "@hyperlane-xyz/sdk": 0.5.0 - "@hyperlane-xyz/utils": 0.5.0 + "@hyperlane-xyz/helloworld": 0.5.1 + "@hyperlane-xyz/interchain-accounts": 0.5.1 + "@hyperlane-xyz/sdk": 0.5.1 + "@hyperlane-xyz/utils": 0.5.1 "@nomiclabs/hardhat-ethers": ^2.0.5 "@nomiclabs/hardhat-etherscan": ^3.0.3 "@nomiclabs/hardhat-waffle": ^2.0.2 @@ -3815,13 +3815,13 @@ __metadata: languageName: unknown linkType: soft -"@hyperlane-xyz/interchain-accounts@0.5.0, @hyperlane-xyz/interchain-accounts@workspace:typescript/ica": +"@hyperlane-xyz/interchain-accounts@0.5.1, @hyperlane-xyz/interchain-accounts@workspace:typescript/ica": version: 0.0.0-use.local resolution: "@hyperlane-xyz/interchain-accounts@workspace:typescript/ica" dependencies: - "@hyperlane-xyz/app": 0.5.0 - "@hyperlane-xyz/sdk": 0.5.0 - "@hyperlane-xyz/utils": 0.5.0 + "@hyperlane-xyz/app": 0.5.1 + "@hyperlane-xyz/sdk": 0.5.1 + "@hyperlane-xyz/utils": 0.5.1 "@nomicfoundation/hardhat-chai-matchers": ^1.0.3 "@nomicfoundation/hardhat-toolbox": ^1.0.2 "@nomiclabs/hardhat-ethers": ^2.0.5 @@ -3866,14 +3866,14 @@ __metadata: languageName: unknown linkType: soft -"@hyperlane-xyz/sdk@0.5.0, @hyperlane-xyz/sdk@^0.5.0, @hyperlane-xyz/sdk@workspace:typescript/sdk": +"@hyperlane-xyz/sdk@0.5.1, @hyperlane-xyz/sdk@^0.5.1, @hyperlane-xyz/sdk@workspace:typescript/sdk": version: 0.0.0-use.local resolution: "@hyperlane-xyz/sdk@workspace:typescript/sdk" dependencies: - "@hyperlane-xyz/app": 0.5.0 + "@hyperlane-xyz/app": 0.5.1 "@hyperlane-xyz/celo-ethers-provider": ^0.1.1 - "@hyperlane-xyz/core": 0.5.0 - "@hyperlane-xyz/utils": 0.5.0 + "@hyperlane-xyz/core": 0.5.1 + "@hyperlane-xyz/utils": 0.5.1 "@nomiclabs/hardhat-ethers": ^2.0.5 "@nomiclabs/hardhat-waffle": ^2.0.2 "@types/coingecko-api": ^1.0.10 @@ -3896,7 +3896,7 @@ __metadata: languageName: unknown linkType: soft -"@hyperlane-xyz/utils@0.5.0, @hyperlane-xyz/utils@^0.5.0, @hyperlane-xyz/utils@workspace:typescript/utils": +"@hyperlane-xyz/utils@0.5.1, @hyperlane-xyz/utils@^0.5.1, @hyperlane-xyz/utils@workspace:typescript/utils": version: 0.0.0-use.local resolution: "@hyperlane-xyz/utils@workspace:typescript/utils" dependencies: