Skip to content

Commit

Permalink
update version in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
thebrandonlucas committed Mar 23, 2024
1 parent f764583 commit 541955a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ See the [Roadmap](#roadmap)
#### CDN

```html
<script type="module" src="https://unpkg.com/[email protected].0/dist/bitcoin-qr/bitcoin-qr.esm.js"></script>
<script type="module" src="https://unpkg.com/[email protected].4/dist/bitcoin-qr/bitcoin-qr.esm.js"></script>
```

#### NPM
Expand All @@ -77,7 +77,7 @@ HTML:
<!doctype html>
<html lang="en">
<head>
<script type="module" src="https://unpkg.com/[email protected].0/dist/bitcoin-qr/bitcoin-qr.esm.js"></script>
<script type="module" src="https://unpkg.com/[email protected].4/dist/bitcoin-qr/bitcoin-qr.esm.js"></script>
</head>
<body>
<bitcoin-qr
Expand Down
2 changes: 1 addition & 1 deletion examples/sveltekit-kitchen-sink/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
},
"type": "module",
"dependencies": {
"bitcoin-qr": "^1.0.5"
"bitcoin-qr": "^1.1.4"
}
}
2 changes: 1 addition & 1 deletion examples/sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
},
"type": "module",
"dependencies": {
"bitcoin-qr": "^1.1.3"
"bitcoin-qr": "^1.1.4"
}
}
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Bitcoin QR</title>
<script src="https://cdn.tailwindcss.com"></script>
<script type="module" src="https://unpkg.com/[email protected].0/dist/bitcoin-qr/bitcoin-qr.esm.js"></script>
<script type="module" src="https://unpkg.com/[email protected].4/dist/bitcoin-qr/bitcoin-qr.esm.js"></script>
<script>
let pollCount = 0;
let paid = false;
Expand Down

0 comments on commit 541955a

Please sign in to comment.