Skip to content

Commit

Permalink
chore: version packages (#1126)
Browse files Browse the repository at this point in the history
* chore: version packages

* Update hyperwasm query param

* Update ROI -> APR based on change to sdk

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Danny Delott <[email protected]>
  • Loading branch information
3 people authored Jun 3, 2024
1 parent 379011e commit 19db938
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 15 deletions.
5 changes: 0 additions & 5 deletions .changeset/serious-students-shop.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ export function YieldStats({
<FixedRateStat hyperdrive={hyperdrive} />
) : (
<Stat
label="Short ROI"
description="Holding period return on shorts assuming the current variable rate stays the same until maturity."
label="Short APR"
description="Annualized return on shorts assuming the current variable rate stays the same until maturity."
tooltipPosition="bottom"
value={
isLoadingShortRoi ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ function getColumns(appConfig: AppConfig) {
id: "short-rate",
header: () => (
<TextWithTooltip
label="Short ROI"
tooltip="Holding period return on shorts assuming the current variable rate stays the same until maturity."
label="Short APR"
tooltip="Annualized return on shorts assuming the current variable rate stays the same until maturity."
/>
),
cell: ({ row }) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function formatMobileColumnData(
},
{ name: "Fixed APR", value: `${formatRate(row.fixedApr)}%` },
{
name: "Short ROI",
name: "Short APR",
value: <ShortRateCell hyperdrive={row.market} />,
},
{
Expand Down
2 changes: 2 additions & 0 deletions crates/hyperdrive-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# hyperdrive-wasm

## 0.14.1

## 0.14.0
2 changes: 1 addition & 1 deletion crates/hyperdrive-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyperdrive-wasm",
"version": "0.14.0",
"version": "0.14.1",
"private": true,
"license": "AGPL-3.0",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/hyperdrive-js-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"dependencies": {
"@delvtech/hyperdrive-artifacts": "^0.3.0",
"@delvtech/hyperdrive-wasm": "^0.14.0",
"@delvtech/hyperdrive-wasm": "^0.14.1",
"lodash.groupby": "^4.6.0",
"lodash.mapvalues": "^4.6.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/hyperdrive-js-core/src/hyperwasm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// invalidated and the latest version of the wasm package will be loaded.
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import * as hyperwasm from "@delvtech/hyperdrive-wasm?v0.14.0";
import * as hyperwasm from "@delvtech/hyperdrive-wasm?v0.14.1";

hyperwasm.initSync(hyperwasm.wasmBuffer);

Expand Down
2 changes: 1 addition & 1 deletion packages/hyperdrive-js-core/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default defineConfig({
plugins: [tsconfigPaths()],
test: {
alias: {
"@delvtech/hyperdrive-wasm?v0.14.0": "@delvtech/hyperdrive-wasm",
"@delvtech/hyperdrive-wasm?v0.14.1": "@delvtech/hyperdrive-wasm",
},
},
});
6 changes: 6 additions & 0 deletions packages/hyperdrive-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @delvtech/hyperdrive-wasm

## 0.14.1

### Patch Changes

- 656c0d0: Upgrade to [email protected]

## 0.14.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hyperdrive-wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Ryan Goree <[email protected]>",
"Danny Delott <[email protected]>"
],
"version": "0.14.0",
"version": "0.14.1",
"license": "AGPL-3.0",
"files": [
"hyperdrive_wasm.js",
Expand Down

0 comments on commit 19db938

Please sign in to comment.