Skip to content

Commit d94bae4

Browse files
authored
Merge pull request #17 from valorem-labs-inc/v0.0.8
v0.0.8
2 parents e3a9c9a + 33753eb commit d94bae4

12 files changed

Lines changed: 133 additions & 148 deletions

.changeset/fluffy-roses-remain.md

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

.changeset/shaggy-lies-poke.md

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

.changeset/silly-bats-clap.md

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

.changeset/smooth-rings-breathe.md

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

.changeset/sweet-snakes-clap.md

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

.changeset/twelve-fans-marry.md

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

.changeset/twelve-seals-cross.md

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

.github/workflows/release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,13 @@ jobs:
4949
- name: Publish to Github Packages
5050
run: pnpm ci:release
5151

52-
- name: Setup .npmrc file to publish to npm
53-
uses: actions/setup-node@v4
54-
with:
55-
node-version: 18
56-
registry-url: 'https://registry.npmjs.org'
57-
scope: '@valorem-labs-inc'
52+
- name: Unset GHP scope, set NPM scope
53+
env:
54+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
55+
run: |
56+
pnpm config delete @valorem-labs-inc:registry --location project
57+
pnpm config set @valorem-labs-inc:registry 'https://registry.npmjs.org' --location project
58+
pnpm config set //registry.npmjs.org/:_authToken '${NODE_AUTH_TOKEN}' --location project
5859
5960
- name: Publish to npm
6061
env:

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @valorem-labs-inc/react-hooks
22

3+
## 0.0.8
4+
5+
### Patch Changes
6+
7+
- 8109a48: fix CI workflow for NPM publishing
8+
- 016a055: drop parcel for tsup...
9+
- 3ebc40d: add arbitrum sepolia deployments; drop arbitrum goerli
10+
- 6580e92: add `useIsGeofenced` hook
11+
- 717e435: fix SIWE `Unknown Error` bug
12+
- 31bdd4b: use `window.location.host` in creation of SIWE message
13+
- 19ecb4a: pin `trade-interfaces` to v1.4.0
14+
- e3015bb: update `onResponse` props in useRFQ/useSoftQuote
15+
316
## 0.0.7
417

518
### Patch Changes

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ function Component() {
123123
The package offers several hooks for various aspects of options trading:
124124

125125
- useRFQ: Request for quote from market makers.
126+
- useSoftQuote: Get a soft quote from a market maker.
126127
- useSeaportFulfillOrder: Fulfill an order via Seaport.
127128
Each hook is designed to be intuitive and easy to integrate, abstracting away
128129
the complexities of the blockchain interactions.

0 commit comments

Comments
 (0)