Skip to content

Commit

Permalink
Version Packages (#200)
Browse files Browse the repository at this point in the history
* Version Packages

* update pnpm lock file

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
0xmaayan and github-actions[bot] authored Nov 16, 2023
1 parent f6f9ceb commit d5e29cc
Show file tree
Hide file tree
Showing 12 changed files with 112 additions and 28 deletions.
19 changes: 0 additions & 19 deletions .changeset/forty-avocados-hide.md

This file was deleted.

24 changes: 24 additions & 0 deletions apps/nextjs-example/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @aptos-labs/wallet-adapter-nextjs-example

## 2.0.0

### Major Changes

- 31e0084: Support TypeScript SDK V2. Fully compatible with existing SDK V1 and Wallet Adapter V1
but with a full SDK V2 support for the dapp.

- Add support for SDK V2 input types
- `signAndSubmitTransaction()` accept only SDK V2 transaction input type
- Implement a `submitTransaction()` function for multi signers transactions
- `signTransaction()` to support both SDK V1 and V2 versions
- Convert wallet `SignedTransaction` response from `signTransaction()` to TS SDK V2 `AccountAuthenticator`
- Demo app to demonstrate different trnsaction flows - single signer, sponsor and multi agent transactions
- Reject promise on core and/or provider errors instead of just returning `false`
- Use `@aptos-labs/ts-sdk@experimental` version `0.0.7`

### Patch Changes

- Updated dependencies [31e0084]
- @aptos-labs/wallet-adapter-ant-design@2.0.0
- @aptos-labs/wallet-adapter-mui-design@2.0.0
- @aptos-labs/wallet-adapter-react@2.0.0
- @aptos-labs/wallet-adapter-core@3.0.0

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aptos-labs/wallet-adapter-nextjs-example",
"version": "1.3.0",
"version": "2.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
Expand Down
21 changes: 21 additions & 0 deletions packages/wallet-adapter-ant-design/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @aptos-labs/wallet-adapter-ant-design

## 2.0.0

### Major Changes

- 31e0084: Support TypeScript SDK V2. Fully compatible with existing SDK V1 and Wallet Adapter V1
but with a full SDK V2 support for the dapp.

- Add support for SDK V2 input types
- `signAndSubmitTransaction()` accept only SDK V2 transaction input type
- Implement a `submitTransaction()` function for multi signers transactions
- `signTransaction()` to support both SDK V1 and V2 versions
- Convert wallet `SignedTransaction` response from `signTransaction()` to TS SDK V2 `AccountAuthenticator`
- Demo app to demonstrate different trnsaction flows - single signer, sponsor and multi agent transactions
- Reject promise on core and/or provider errors instead of just returning `false`
- Use `@aptos-labs/ts-sdk@experimental` version `0.0.7`

### Patch Changes

- Updated dependencies [31e0084]
- @aptos-labs/wallet-adapter-react@2.0.0

## 1.2.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/wallet-adapter-ant-design/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aptos-labs/wallet-adapter-ant-design",
"version": "1.2.7",
"version": "2.0.0",
"description": "Aptos Wallet Adapter ant-design",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down Expand Up @@ -49,7 +49,7 @@
"typescript": "^4.5.3"
},
"dependencies": {
"@aptos-labs/wallet-adapter-react": "^1.4.0",
"@aptos-labs/wallet-adapter-react": "^2.0.0",
"antd": "^5.1.2"
},
"peerDependencies": {
Expand Down
16 changes: 16 additions & 0 deletions packages/wallet-adapter-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @aptos-labs/wallet-adapter-core

## 3.0.0

### Major Changes

- 31e0084: Support TypeScript SDK V2. Fully compatible with existing SDK V1 and Wallet Adapter V1
but with a full SDK V2 support for the dapp.

- Add support for SDK V2 input types
- `signAndSubmitTransaction()` accept only SDK V2 transaction input type
- Implement a `submitTransaction()` function for multi signers transactions
- `signTransaction()` to support both SDK V1 and V2 versions
- Convert wallet `SignedTransaction` response from `signTransaction()` to TS SDK V2 `AccountAuthenticator`
- Demo app to demonstrate different trnsaction flows - single signer, sponsor and multi agent transactions
- Reject promise on core and/or provider errors instead of just returning `false`
- Use `@aptos-labs/ts-sdk@experimental` version `0.0.7`

## 2.6.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-adapter-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aptos-labs/wallet-adapter-core",
"version": "2.6.0",
"version": "3.0.0",
"description": "Aptos Wallet Adapter Core",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
21 changes: 21 additions & 0 deletions packages/wallet-adapter-mui-design/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @aptos-labs/wallet-adapter-mui-design

## 2.0.0

### Major Changes

- 31e0084: Support TypeScript SDK V2. Fully compatible with existing SDK V1 and Wallet Adapter V1
but with a full SDK V2 support for the dapp.

- Add support for SDK V2 input types
- `signAndSubmitTransaction()` accept only SDK V2 transaction input type
- Implement a `submitTransaction()` function for multi signers transactions
- `signTransaction()` to support both SDK V1 and V2 versions
- Convert wallet `SignedTransaction` response from `signTransaction()` to TS SDK V2 `AccountAuthenticator`
- Demo app to demonstrate different trnsaction flows - single signer, sponsor and multi agent transactions
- Reject promise on core and/or provider errors instead of just returning `false`
- Use `@aptos-labs/ts-sdk@experimental` version `0.0.7`

### Patch Changes

- Updated dependencies [31e0084]
- @aptos-labs/wallet-adapter-react@2.0.0

## 1.0.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/wallet-adapter-mui-design/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aptos-labs/wallet-adapter-mui-design",
"version": "1.0.7",
"version": "2.0.0",
"description": "Aptos Wallet Adapter mui design",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down Expand Up @@ -43,7 +43,7 @@
"typescript": "^4.5.3"
},
"dependencies": {
"@aptos-labs/wallet-adapter-react": "^1.4.0",
"@aptos-labs/wallet-adapter-react": "^2.0.0",
"@babel/core": "^7.0.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
Expand Down
21 changes: 21 additions & 0 deletions packages/wallet-adapter-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @aptos-labs/wallet-adapter-react

## 2.0.0

### Major Changes

- 31e0084: Support TypeScript SDK V2. Fully compatible with existing SDK V1 and Wallet Adapter V1
but with a full SDK V2 support for the dapp.

- Add support for SDK V2 input types
- `signAndSubmitTransaction()` accept only SDK V2 transaction input type
- Implement a `submitTransaction()` function for multi signers transactions
- `signTransaction()` to support both SDK V1 and V2 versions
- Convert wallet `SignedTransaction` response from `signTransaction()` to TS SDK V2 `AccountAuthenticator`
- Demo app to demonstrate different trnsaction flows - single signer, sponsor and multi agent transactions
- Reject promise on core and/or provider errors instead of just returning `false`
- Use `@aptos-labs/ts-sdk@experimental` version `0.0.7`

### Patch Changes

- Updated dependencies [31e0084]
- @aptos-labs/wallet-adapter-core@3.0.0

## 1.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-adapter-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aptos-labs/wallet-adapter-react",
"version": "1.4.0",
"version": "2.0.0",
"description": "Aptos Wallet Adapter React Provider",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d5e29cc

Please sign in to comment.