From a48ce8bf237d54906d231f1b5a241718d5cb3902 Mon Sep 17 00:00:00 2001 From: Eric Taylor Date: Mon, 3 Mar 2025 09:25:55 -0700 Subject: [PATCH 1/2] feat: bump version (#969) BREAKING CHANGE: The old PVM transaction builder has been removed. The new Etna builder is now the default builder in order to support dynamic fees. Static fees on P-chain are not longer applicable. Likewise, API's referring to retrieving static fees have been removed where no longer applicable, and new X-Chain specific API's have been added to cover retrieving static tx fees specific to X-Chain transactions. The `e` alias on `pvm` (ie `pvm.e.{builderMethod}`) has been marked deprecated since the builder methods are now directly available on the `pvm` export. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 09c23a6f7..7274b6ccc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@avalabs/avalanchejs", - "version": "4.1.1", + "version": "5.0.0", "description": "Avalanche Platform JS Library", "main": "dist/index.cjs", "types": "dist/index.d.ts", From 7fe0bf028d13ffd18a2f1fbcd48ed043b0d51587 Mon Sep 17 00:00:00 2001 From: Eric Taylor Date: Mon, 3 Mar 2025 10:12:49 -0700 Subject: [PATCH 2/2] feat: fix release (#970) BREAKING CHANGE: See v4.2.0 release notes. --- .releaserc.cjs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.releaserc.cjs b/.releaserc.cjs index ddd735aaa..62a1036d8 100644 --- a/.releaserc.cjs +++ b/.releaserc.cjs @@ -20,19 +20,6 @@ const commitAnalyzerSetting = [ '@semantic-release/commit-analyzer', { preset: 'angular', - releaseRules: [ - { - type: 'feat', - release: 'minor', - }, - { - type: '*', - release: 'patch', - }, - ], - parserOpts: { - noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES'], - }, }, ];