Skip to content

Commit

Permalink
feat: trial error release fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Jun 5, 2024
1 parent d5ea931 commit 8b8f3f6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/actions/provision/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ runs:
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: 'https://registry.npmjs.org/'
cache: 'pnpm'

- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ on:
push:
branches:
- dev
- 'fix/release'

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"packages/rpc": "1.0.0",
"packages/ui": "1.3.2",
"packages/utils": "0.6.7",
"packages/crypto": "1.0.0"
"packages/crypto": "1.0.1"
}
2 changes: 1 addition & 1 deletion packages/crypto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@leather-wallet/crypto",
"author": "leather-wallet",
"description": "Generic crypto utils package for Leather",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"build": "tsup",
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/src/derivation-path-utils.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { extractAccountIndexFromPath, extractAddressIndexFromPath } from './derivation-path-utils';

describe(extractAddressIndexFromPath.name, () => {
test('should extract the address index from a derivation path', () => {
test('should extract the address index from the derivation path', () => {
expect(extractAddressIndexFromPath("m/84'/0'/0'/0/0")).toEqual(0);
expect(extractAddressIndexFromPath("m/84'/0'/0'/0/10")).toEqual(10);
expect(extractAddressIndexFromPath("m/84'/0'/0'/0/9999")).toEqual(9999);
Expand Down

0 comments on commit 8b8f3f6

Please sign in to comment.