Skip to content

Commit

Permalink
Version bump and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
keyz-tk committed May 19, 2023
1 parent dd74403 commit 8e27001
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 3 deletions.
8 changes: 8 additions & 0 deletions packages/cosmjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @turnkey/cosmjs

## 0.1.1

### Patch Changes

- New `TurnkeyRequestError` error class that contains rich error details
- Updated dependencies
- @turnkey/http@0.13.2

## 0.1.0

- Initial release
2 changes: 1 addition & 1 deletion packages/cosmjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turnkey/cosmjs",
"version": "0.1.0",
"version": "0.1.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/cosmjs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
import {
init as httpInit,
TurnkeyActivityError,
TurnkeyRequestError,
TurnkeyApi,
} from "@turnkey/http";
import type { SignDoc } from "cosmjs-types/cosmos/tx/v1beta1/tx";
Expand Down Expand Up @@ -204,6 +205,8 @@ async function fetchCompressedPublicKey(input: {
return { compressedPublicKey };
}

export { TurnkeyActivityError, TurnkeyRequestError };

function refineNonNull<T>(
input: T | null | undefined,
errorMessage?: string
Expand Down
8 changes: 8 additions & 0 deletions packages/ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @turnkey/ethers

## 0.13.2

### Patch Changes

- New `TurnkeyRequestError` error class that contains rich error details
- Updated dependencies
- @turnkey/http@0.13.2

## 0.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turnkey/ethers",
"version": "0.13.1",
"version": "0.13.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @turnkey/http

## 0.13.2

### Patch Changes

- New `TurnkeyRequestError` error class that contains rich error details

## 0.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turnkey/http",
"version": "0.13.1",
"version": "0.13.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down

0 comments on commit 8e27001

Please sign in to comment.