Skip to content

Commit

Permalink
Prepare 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hlopes-ledger committed Jun 22, 2023
1 parent 28193d9 commit 909c1ad
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release_connect-kit-loader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ jobs:
if: startsWith(github.event.inputs.release-type, 'pre')
run: |
cd ${{ env.PKG_DIR }}
#echo "NEW_VERSION=$(npm --no-git-tag-version --preid=${{ env.DIST_TAG_PRERELEASE }} version $RELEASE_TYPE)" >> $GITHUB_ENV
echo "NEW_VERSION=v1.1.0-beta.2" >> $GITHUB_ENV
echo "NEW_VERSION=$(npm --no-git-tag-version --preid=${{ env.DIST_TAG_PRERELEASE }} version $RELEASE_TYPE)" >> $GITHUB_ENV
echo "RELEASE_TAG=${{ env.DIST_TAG_PRERELEASE }}" >> $GITHUB_ENV
env:
RELEASE_TYPE: ${{ github.event.inputs.release-type }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release_connect-kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ jobs:
if: startsWith(github.event.inputs.release-type, 'pre')
run: |
cd ${{ env.PKG_DIR }}
#echo "NEW_VERSION=$(npm --no-git-tag-version --preid=${{ env.DIST_TAG_PRERELEASE }} version $RELEASE_TYPE)" >> $GITHUB_ENV
echo "NEW_VERSION=v1.1.0-beta.3" >> $GITHUB_ENV
echo "NEW_VERSION=$(npm --no-git-tag-version --preid=${{ env.DIST_TAG_PRERELEASE }} version $RELEASE_TYPE)" >> $GITHUB_ENV
echo "RELEASE_TAG=${{ env.DIST_TAG_PRERELEASE }}" >> $GITHUB_ENV
env:
RELEASE_TYPE: ${{ github.event.inputs.release-type }}
Expand Down
15 changes: 15 additions & 0 deletions packages/connect-kit-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
Connect Kit now supports WalletConnect v2.

To migrate to WaletConnect version 2:

- Create a project id on the [WalletConnect Cloud](https://cloud.walletconnect.com/), it's
free.
- Update Connect Kit loader to version 1.1.0.
- Add `walletConnectVersion: 2`, `projectId: 'id from step 1'` and rename
`rpc` to `rpcMap` on your `checkSupport` parameters.

Have a look at the documentation for more details.

After 28 June you will need to specify a custom bridge server to
keep using WalletConnect v1, passing `walletConnectVersion: 1` and
`bridge: 'https://wc.custom.bridge.com'`.

## 1.1.0-beta.2 - 2023-06-21
### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-kit-loader/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export interface LedgerConnectKit {
};

export async function loadConnectKit(): Promise<LedgerConnectKit> {
const src = "https://cdn.jsdelivr.net/npm/@ledgerhq/connect-kit@beta";
const src = "https://cdn.jsdelivr.net/npm/@ledgerhq/connect-kit@1";
const globalName = "ledgerConnectKit";

return new Promise((resolve, reject) => {
Expand Down
4 changes: 4 additions & 0 deletions packages/connect-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
Connect Kit now supports WalletConnect v2.

Have a look at the Connect Kit loader documentation for
more details.

## 1.1.0-beta.3 - 2023-06-21
### Changed
Expand Down

0 comments on commit 909c1ad

Please sign in to comment.