]> git.codecow.com Git - nano25519.git/commitdiff
Pin package version in example code.
authorChris Duncan <chris@zoso.dev>
Fri, 14 Aug 2026 05:01:58 +0000 (22:01 -0700)
committerChris Duncan <chris@zoso.dev>
Fri, 14 Aug 2026 05:01:58 +0000 (22:01 -0700)
README.md

index c30e864e10d941175d0b41f92622a0fffab9a465..d3bb4be88f31e458992612d040059dfc0a62a261 100644 (file)
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ nano25519 can be used directly on a webpage with a script module:
 ```html
 <script type="module">
   (async () => {
-    const nano25519 = await import("https://unpkg.com/nano25519@latest");
+    const nano25519 = await import("https://unpkg.com/nano25519@1.0.8");
     const { derive, sign, verify } = nano25519;
   })();
 </script>