Compare commits

..

3 Commits

Author SHA1 Message Date
tequ
b417d67b28 4.0.4 (#61) 2026-05-27 11:54:01 +09:00
tequ
bf788fe7b9 4.0.4-alpha.3 (#59) 2026-05-26 03:25:35 +00:00
tequ
3c7609429f Fix publish to use release_tag (#58) 2026-05-26 03:17:31 +00:00
4 changed files with 20 additions and 3 deletions

View File

@@ -61,11 +61,18 @@ jobs:
name="$(jq -r .name "$package_json")"
version="$(jq -r .version "$package_json")"
tag="$name@$version"
if [[ "$version" == *"-"* ]]; then
release_tag="${version#*-}"
release_tag="${release_tag%%.*}"
else
release_tag="latest"
fi
{
echo "name=$name"
echo "version=$version"
echo "tag=$tag"
echo "release_tag=$release_tag"
} >> "$GITHUB_OUTPUT"
- name: Check release tag matches package version
@@ -99,4 +106,4 @@ jobs:
exit 1
- name: Publish to npm
run: npm publish --workspace "${{ steps.release.outputs.package-path }}" --registry https://registry.npmjs.org
run: npm publish --workspace "${{ steps.release.outputs.package-path }}" --registry https://registry.npmjs.org --tag "${{ steps.package.outputs.release_tag }}"

2
package-lock.json generated
View File

@@ -16048,7 +16048,7 @@
}
},
"packages/xahau": {
"version": "4.0.4-alpha.2",
"version": "4.0.4",
"license": "ISC",
"dependencies": {
"@scure/bip32": "^1.3.1",

View File

@@ -4,6 +4,16 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
## Unreleased Changes
## 4.0.4 (2026-05-27)
### Added
* Improve HookStateScale validation
### Fixed
* Add lsfTshCollect flag in AccountRoot
* Refactor amount assignment in partialPayment.ts
* Fix setTransactionFlagsToNumber for Xahau transactions
## 4.0.3 (2025-11-18)
### Added

View File

@@ -1,6 +1,6 @@
{
"name": "xahau",
"version": "4.0.4-alpha.2",
"version": "4.0.4",
"license": "ISC",
"description": "A TypeScript/JavaScript API for interacting with the Xahau Network in Node.js and the browser",
"files": [