Skip to content

Commit 01f1a3a

Browse files
committed
chore: remove beta versioning, use stable 11.0.0
1 parent dd8488f commit 01f1a3a

7 files changed

Lines changed: 7 additions & 18 deletions

File tree

.changeset/pre.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

solidity/contracts/PackageVersioned.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ pragma solidity >=0.6.11;
77
**/
88
abstract contract PackageVersioned {
99
// GENERATED CODE - DO NOT EDIT
10-
string public constant PACKAGE_VERSION = "11.0.0-beta.0";
10+
string public constant PACKAGE_VERSION = "11.0.0";
1111
}

solidity/core-utils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export * from './typechain/index.js';
22
export * from './zksync/index.js';
33
// GENERATED CODE - DO NOT EDIT
4-
export const CONTRACTS_PACKAGE_VERSION = '11.0.0-beta.0';
4+
export const CONTRACTS_PACKAGE_VERSION = '11.0.0';

solidity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hyperlane-xyz/core",
33
"description": "Core solidity contracts for Hyperlane",
4-
"version": "11.0.0-beta.0",
4+
"version": "10.1.5",
55
"dependencies": {
66
"@hyperlane-xyz/utils": "workspace:*"
77
},

typescript/sdk/src/token/EvmERC20WarpModule.hardhat-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1676,7 +1676,7 @@ describe('EvmERC20WarpHyperlaneModule', async () => {
16761676
.resolves('6.0.0');
16771677

16781678
// Also stub fetchScale to avoid version mismatch when reading scale
1679-
// For old contracts (< 11.0.0-beta.0), scale would default to 1
1679+
// For old contracts (< 11.0.0), scale would default to 1
16801680
const scaleStub = sinon
16811681
.stub(evmERC20WarpModule.reader, 'fetchScale')
16821682
.resolves(1);

typescript/sdk/src/token/EvmERC20WarpRouteReader.hardhat-test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ describe('ERC20WarpRouterReader', async () => {
989989
.returns(mockPackageVersioned as any);
990990

991991
// Also stub fetchScale to avoid version mismatch when reading scale
992-
// For old contracts (< 11.0.0-beta.0), scale would default to 1
992+
// For old contracts (< 11.0.0), scale would default to 1
993993
const fetchScaleStub = sinon
994994
.stub(evmERC20WarpRouteReader, 'fetchScale')
995995
.resolves(1);
@@ -1124,7 +1124,7 @@ describe('ERC20WarpRouterReader', async () => {
11241124
.returns(mockPackageVersioned as any);
11251125

11261126
// Also stub fetchScale to avoid version mismatch when reading scale
1127-
// For old contracts (< 11.0.0-beta.0), scale would default to 1
1127+
// For old contracts (< 11.0.0), scale would default to 1
11281128
const fetchScaleStub = sinon
11291129
.stub(evmERC20WarpRouteReader, 'fetchScale')
11301130
.resolves(1);

typescript/sdk/src/token/EvmERC20WarpRouteReader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ import { getExtraLockBoxConfigs } from './xerc20.js';
8282

8383
const REBALANCING_CONTRACT_VERSION = '8.0.0';
8484
export const TOKEN_FEE_CONTRACT_VERSION = '10.0.0';
85-
const SCALE_FRACTION_VERSION = '11.0.0-beta.0';
85+
const SCALE_FRACTION_VERSION = '11.0.0';
8686

8787
export class EvmERC20WarpRouteReader extends EvmRouterReader {
8888
protected readonly logger = rootLogger.child({

0 commit comments

Comments
 (0)