Skip to content

Commit 0cf44fb

Browse files
committed
Merge branch 'master' of https://github.com/ecadlabs/taquito
2 parents 29e632d + ee7feb9 commit 0cf44fb

File tree

49 files changed

+505
-510
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+505
-510
lines changed

.github/workflows/bundle_webpack.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
- run: npm ci
2323
- run: npm run build
2424
- run: npm -w packages/taquito-local-forging run build-webpack
25-
- uses: actions/upload-artifact@v3
25+
- uses: actions/upload-artifact@v4
2626
with:
2727
name: taquito-local-forging-vanilla
2828
path: |
2929
packages/taquito-local-forging/dist/taquito_local_forging.js
3030
packages/taquito-local-forging/dist/taquito_local_forging.js.map
3131
3232
- run: npm -w packages/taquito-beacon-wallet run build-webpack
33-
- uses: actions/upload-artifact@v3
33+
- uses: actions/upload-artifact@v4
3434
with:
3535
name: taquito-beacon-wallet-vanilla
3636
path: |

README.md

+95-113
Large diffs are not rendered by default.

apps/taquito-test-dapp/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "taquito-test-dapp-vite",
33
"private": true,
4-
"version": "21.0.1",
4+
"version": "21.0.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -24,13 +24,13 @@
2424
"vite": "^5.3.5"
2525
},
2626
"dependencies": {
27-
"@airgap/beacon-sdk": "^4.3.2",
28-
"@airgap/beacon-types": "^4.3.2",
29-
"@taquito/beacon-wallet": "^21.0.1",
30-
"@taquito/core": "^21.0.1",
31-
"@taquito/taquito": "^21.0.1",
32-
"@taquito/utils": "^21.0.1",
33-
"@taquito/wallet-connect": "^21.0.1",
27+
"@airgap/beacon-sdk": "^4.3.3",
28+
"@airgap/beacon-types": "^4.3.3",
29+
"@taquito/beacon-wallet": "^21.0.2",
30+
"@taquito/core": "^21.0.2",
31+
"@taquito/taquito": "^21.0.2",
32+
"@taquito/utils": "^21.0.2",
33+
"@taquito/wallet-connect": "^21.0.2",
3434
"buffer": "^6.0.3",
3535
"svelte-modals": "^2.0.0-beta.2",
3636
"svelte-select": "^5.8.3",

docs/version.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@ title: Versions
33
author: Jev Bjorsell
44
---
55

6+
# Taquito v21.0.2
7+
## Summary
8+
9+
### Beacon version Update
10+
Updated Beacon version to v4.3.3 #3110
11+
12+
### Internals
13+
Cleaned up paris references after mainnet migration #3107
14+
Updated @ledgerhq/hw-transport-webhid to v6.30.0 #3110
15+
Updated ci script actions/upload-artifact to v4 #3110
16+
17+
### Documentation
18+
Updated documentation of tzip12.md and metadata-tzip16.md #3107
19+
620
# Taquito v21.0.1
721
## Summary
822

example/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@taquito/example",
33
"private": true,
4-
"version": "21.0.1",
4+
"version": "21.0.2",
55
"scripts": {
66
"example": "node -r ts-node/register --preserve-symlinks example-node.ts",
77
"example:activation": "node -r ts-node/register --preserve-symlinks example-activate.ts",
@@ -42,16 +42,16 @@
4242
},
4343
"dependencies": {
4444
"@ledgerhq/hw-transport-node-hid": "^6.29.5",
45-
"@taquito/ledger-signer": "^21.0.1",
46-
"@taquito/local-forging": "^21.0.1",
47-
"@taquito/michel-codec": "^21.0.1",
48-
"@taquito/michelson-encoder": "^21.0.1",
49-
"@taquito/rpc": "^21.0.1",
50-
"@taquito/sapling": "^21.0.1",
51-
"@taquito/signer": "^21.0.1",
52-
"@taquito/taquito": "^21.0.1",
53-
"@taquito/tzip16": "^21.0.1",
54-
"@taquito/utils": "^21.0.1",
45+
"@taquito/ledger-signer": "^21.0.2",
46+
"@taquito/local-forging": "^21.0.2",
47+
"@taquito/michel-codec": "^21.0.2",
48+
"@taquito/michelson-encoder": "^21.0.2",
49+
"@taquito/rpc": "^21.0.2",
50+
"@taquito/sapling": "^21.0.2",
51+
"@taquito/signer": "^21.0.2",
52+
"@taquito/taquito": "^21.0.2",
53+
"@taquito/tzip16": "^21.0.2",
54+
"@taquito/utils": "^21.0.2",
5555
"bignumber.js": "^9.1.2"
5656
},
5757
"devDependencies": {

integration-tests/package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@
1212
"originate-known-contracts": "node -r ts-node/register originate-known-contracts.ts",
1313
"originate-known-contracts-and-run-test": "node -r ts-node/register originate-known-contracts.ts && jest"
1414
},
15-
"version": "21.0.1",
15+
"version": "21.0.2",
1616
"dependencies": {
1717
"@ledgerhq/devices": "8.4.4",
1818
"@ledgerhq/hw-transport": "6.31.4",
1919
"@ledgerhq/hw-transport-node-hid": "6.29.5",
2020
"@ledgerhq/hw-transport-node-hid-noevents": "6.30.5",
21-
"@taquito/contracts-library": "^21.0.1",
22-
"@taquito/core": "^21.0.1",
23-
"@taquito/http-utils": "^21.0.1",
24-
"@taquito/local-forging": "^21.0.1",
25-
"@taquito/michel-codec": "^21.0.1",
26-
"@taquito/michelson-encoder": "^21.0.1",
27-
"@taquito/remote-signer": "^21.0.1",
28-
"@taquito/rpc": "^21.0.1",
29-
"@taquito/sapling": "^21.0.1",
30-
"@taquito/signer": "^21.0.1",
31-
"@taquito/taquito": "^21.0.1",
32-
"@taquito/tzip12": "^21.0.1",
33-
"@taquito/tzip16": "^21.0.1",
34-
"@taquito/utils": "^21.0.1",
21+
"@taquito/contracts-library": "^21.0.2",
22+
"@taquito/core": "^21.0.2",
23+
"@taquito/http-utils": "^21.0.2",
24+
"@taquito/local-forging": "^21.0.2",
25+
"@taquito/michel-codec": "^21.0.2",
26+
"@taquito/michelson-encoder": "^21.0.2",
27+
"@taquito/remote-signer": "^21.0.2",
28+
"@taquito/rpc": "^21.0.2",
29+
"@taquito/sapling": "^21.0.2",
30+
"@taquito/signer": "^21.0.2",
31+
"@taquito/taquito": "^21.0.2",
32+
"@taquito/tzip12": "^21.0.2",
33+
"@taquito/tzip16": "^21.0.2",
34+
"@taquito/utils": "^21.0.2",
3535
"bignumber.js": "^9.1.2",
3636
"bip39": "3.1.0",
3737
"blakejs": "^1.2.1"

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"useNx": true,
3-
"version": "21.0.1"
3+
"version": "21.0.2"
44
}

0 commit comments

Comments
 (0)