Skip to content

Commit

Permalink
Merge pull request #235 from getAlby/chore/3.5.1
Browse files Browse the repository at this point in the history
chore: 3.5.1 release
  • Loading branch information
rolznz authored May 23, 2024
2 parents 8b301c2 + 24faac1 commit 13ebfc6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ You can use Bitcoin Connect without any build tools:

```html
<script type="module">
import {launchModal} from 'https://esm.sh/@getalby/[email protected].0'; // jsdelivr.net, skypack.dev also work
import {launchModal} from 'https://esm.sh/@getalby/[email protected].1'; // jsdelivr.net, skypack.dev also work
// use Bitcoin connect API normally...
launchModal();
// or if you just want access to the web components:
import 'https://esm.sh/@getalby/[email protected].0';
import 'https://esm.sh/@getalby/[email protected].1';
</script>

<!-- Bitcoin Connect components are now available -->
Expand Down
2 changes: 1 addition & 1 deletion demos/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<title>Bitcoin Connect</title>
<script type="module">
import {onConnected} from 'https://esm.sh/@getalby/[email protected].0';
import {onConnected} from 'https://esm.sh/@getalby/[email protected].1';
onConnected((provider) => {
console.log('Connected with provider', provider);
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@getalby/bitcoin-connect",
"version": "3.5.0",
"version": "3.5.1",
"description": "Web components to connect to a lightning wallet and power a website with WebLN",
"type": "module",
"source": "src/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@getalby/bitcoin-connect-react",
"version": "3.5.0",
"version": "3.5.1",
"type": "module",
"source": "src/index.ts",
"main": "./dist/index.cjs",
Expand All @@ -27,7 +27,7 @@
"build": "microbundle --globals react=React --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react"
},
"dependencies": {
"@getalby/bitcoin-connect": "^3.5.0"
"@getalby/bitcoin-connect": "^3.5.1"
},
"devDependencies": {
"@types/react": "^18.2.21",
Expand Down
8 changes: 4 additions & 4 deletions react/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1018,10 +1018,10 @@
"@babel/helper-validator-identifier" "^7.22.5"
to-fast-properties "^2.0.0"

"@getalby/bitcoin-connect@^3.5.0":
version "3.5.0"
resolved "https://registry.yarnpkg.com/@getalby/bitcoin-connect/-/bitcoin-connect-3.5.0.tgz#ab660af1774d2a70715672a8d3ef5e82692a9e89"
integrity sha512-7eH5YRmgk5nWDbwzxZa93yFqHxAquD8cmVbCTdgB07+mVA8bggIoF+KmU1SFDLoXpN86NBCChupfId6oEM4lsQ==
"@getalby/bitcoin-connect@^3.5.1":
version "3.5.1"
resolved "https://registry.yarnpkg.com/@getalby/bitcoin-connect/-/bitcoin-connect-3.5.1.tgz#efa97e7aeb274cf28c7d354f290eed2d4b649bfc"
integrity sha512-ZCaCucYByM5GDLTgG1MAyDh/qBYpZQJSslzFGagMLUuV7g04Na6CqvD6Pt5AbkwxSW+0WD2x1siktUUMbPKZeQ==
dependencies:
"@getalby/lightning-tools" "^5.0.3"
"@getalby/sdk" "^3.5.1"
Expand Down

0 comments on commit 13ebfc6

Please sign in to comment.