Skip to content

Commit

Permalink
Cut release
Browse files Browse the repository at this point in the history
  • Loading branch information
emostov committed Jul 28, 2023
1 parent 38b424f commit dc62321
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 22 deletions.
13 changes: 0 additions & 13 deletions .changeset/20230725-update-generated-types.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-rules-yawn.md

This file was deleted.

10 changes: 10 additions & 0 deletions examples/rebalancer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @turnkey/rebalancer

## 0.0.2

### Patch Changes

- Updated dependencies [46473ec]
- Updated dependencies [38b424f]
- @turnkey/http@1.0.0
- @turnkey/ethers@0.16.4
2 changes: 1 addition & 1 deletion examples/rebalancer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turnkey/rebalancer",
"version": "0.0.1",
"version": "0.0.2",
"private": true,
"scripts": {
"build": "pnpm -w run build-all",
Expand Down
16 changes: 16 additions & 0 deletions packages/cosmjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @turnkey/cosmjs

## 0.4.4

### Patch Changes

- 46473ec: This breaking change updates generated code to be shorter and more intuitive to read:

- generated fetchers do not include the HTTP method in their name. For example `useGetGetActivity` is now `useGetActivity`, and `usePostSignTransaction` is `useSignTransaction`.
- input types follow the same convention (no HTTP method in the name): `TPostCreatePrivateKeysInput` is now `TCreatePrivateKeysInput`.
- the "federated" request helpers introduced in `0.18.0` are now named "signed" requests to better reflect what they are. `FederatedRequest` is now `SignedRequest`, and generated types follow. For example: `federatedPostCreatePrivateKeys` is now `signCreatePrivateKeys`, `federatedGetGetActivity` is now `signGetActivity`, and so on.

The name updates should be automatically suggested if you use VSCode since the new names are simply shorter versions of the old one.

- Updated dependencies [46473ec]
- Updated dependencies [38b424f]
- @turnkey/http@1.0.0

## 0.4.3

### Patch Changes
Expand Down
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.4.3",
"version": "0.4.4",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down
16 changes: 16 additions & 0 deletions packages/ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @turnkey/ethers

## 0.16.4

### Patch Changes

- 46473ec: This breaking change updates generated code to be shorter and more intuitive to read:

- generated fetchers do not include the HTTP method in their name. For example `useGetGetActivity` is now `useGetActivity`, and `usePostSignTransaction` is `useSignTransaction`.
- input types follow the same convention (no HTTP method in the name): `TPostCreatePrivateKeysInput` is now `TCreatePrivateKeysInput`.
- the "federated" request helpers introduced in `0.18.0` are now named "signed" requests to better reflect what they are. `FederatedRequest` is now `SignedRequest`, and generated types follow. For example: `federatedPostCreatePrivateKeys` is now `signCreatePrivateKeys`, `federatedGetGetActivity` is now `signGetActivity`, and so on.

The name updates should be automatically suggested if you use VSCode since the new names are simply shorter versions of the old one.

- Updated dependencies [46473ec]
- Updated dependencies [38b424f]
- @turnkey/http@1.0.0

## 0.16.3

### 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.16.3",
"version": "0.16.4",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down
16 changes: 16 additions & 0 deletions packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @turnkey/http

## 1.0.0

### Major Changes

- 46473ec: This breaking change updates generated code to be shorter and more intuitive to read:

- generated fetchers do not include the HTTP method in their name. For example `useGetGetActivity` is now `useGetActivity`, and `usePostSignTransaction` is `useSignTransaction`.
- input types follow the same convention (no HTTP method in the name): `TPostCreatePrivateKeysInput` is now `TCreatePrivateKeysInput`.
- the "federated" request helpers introduced in `0.18.0` are now named "signed" requests to better reflect what they are. `FederatedRequest` is now `SignedRequest`, and generated types follow. For example: `federatedPostCreatePrivateKeys` is now `signCreatePrivateKeys`, `federatedGetGetActivity` is now `signGetActivity`, and so on.

The name updates should be automatically suggested if you use VSCode since the new names are simply shorter versions of the old one.

### Patch Changes

- 38b424f: Sync public api types

## 0.18.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.18.1",
"version": "1.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down

0 comments on commit dc62321

Please sign in to comment.