Skip to content

Commit

Permalink
Version Packages (#220)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jan 29, 2025
1 parent bab7735 commit 6ed7630
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 16 deletions.
13 changes: 0 additions & 13 deletions .changeset/quick-seahorses-type.md

This file was deleted.

13 changes: 13 additions & 0 deletions packages/agw-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @abstract-foundation/agw-client

## 1.3.1

### Patch Changes

- bab7735: Fix chains sorting

Sorting alphabetically works well for strings ("Apple" comes before "Banana").
But, sorting numbers can produce incorrect results.
"25" is bigger than "100", because "2" is bigger than "1".

This makes abstractTestnet to become defaultChain instead of abstractMainnet,
which in turn can produce some issues on dApps using AGW with both Abstract testnet and mainnet.

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/agw-client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@abstract-foundation/agw-client",
"description": "Abstract Global Wallet Client SDK",
"version": "1.3.0",
"version": "1.3.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
16 changes: 16 additions & 0 deletions packages/agw-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @abstract-foundation/agw-react

## 1.4.4

### Patch Changes

- bab7735: Fix chains sorting

Sorting alphabetically works well for strings ("Apple" comes before "Banana").
But, sorting numbers can produce incorrect results.
"25" is bigger than "100", because "2" is bigger than "1".

This makes abstractTestnet to become defaultChain instead of abstractMainnet,
which in turn can produce some issues on dApps using AGW with both Abstract testnet and mainnet.

- Updated dependencies [bab7735]
- @abstract-foundation/agw-client@1.3.1

## 1.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/agw-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@abstract-foundation/agw-react",
"description": "Abstract Global Wallet React Components",
"version": "1.4.3",
"version": "1.4.4",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/web3-react-agw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @abstract-foundation/web3-react-agw

## 1.3.1

### Patch Changes

- Updated dependencies [bab7735]
- @abstract-foundation/agw-client@1.3.1

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-react-agw/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@abstract-foundation/web3-react-agw",
"description": "Abstract Global Wallet for web3-react",
"version": "1.3.0",
"version": "1.3.1",
"scripts": {
"build": "pnpm run clean && pnpm run build:esm+types && pnpm run build:cjs",
"build:esm+types": "tsc --outDir ./dist/esm --declaration --declarationMap --declarationDir ./dist/types && printf '{\"type\":\"module\"}' > ./dist/esm/package.json",
Expand Down

0 comments on commit 6ed7630

Please sign in to comment.