diff options
author | Carson Gross <carson@bigsky.software> | 2023-11-16 16:52:11 -0700 |
---|---|---|
committer | Carson Gross <carson@bigsky.software> | 2023-11-16 16:52:11 -0700 |
commit | a59a10baad67ad237f6f49bde1b8ed086eed97d2 (patch) | |
tree | ee72a204d1b4c67a3f8f432730d5edd546f260d8 | |
parent | ab8605714f6b39570cac3bc7c972b85339cbf63f (diff) | |
download | htmx-a59a10baad67ad237f6f49bde1b8ed086eed97d2.tar.gz htmx-a59a10baad67ad237f6f49bde1b8ed086eed97d2.zip |
bump for next version
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/htmx.js | 2 | ||||
-rw-r--r-- | www/content/_index.md | 2 | ||||
-rw-r--r-- | www/content/docs.md | 2 |
6 files changed, 7 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d67d568..099d0d30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## [1.9.9] - ????-??-?? + ## [1.9.8] - 2023-11-06 * Fixed a few npm & build related issues @@ -33,7 +33,7 @@ By removing these arbitrary constraints htmx completes HTML as a ## quick start ```html - <script src="https://unpkg.com/htmx.org@1.9.8"></script> + <script src="https://unpkg.com/htmx.org@1.9.9"></script> <!-- have a button POST a click via AJAX --> <button hx-post="/clicked" hx-swap="outerHTML"> Click Me diff --git a/package.json b/package.json index e91ec71f..c441f8b7 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "AJAX", "HTML" ], - "version": "1.9.8", + "version": "1.9.9", "homepage": "https://htmx.org/", "bugs": { "url": "https://github.com/bigskysoftware/htmx/issues" diff --git a/src/htmx.js b/src/htmx.js index 03aad245..149c624f 100644 --- a/src/htmx.js +++ b/src/htmx.js @@ -88,7 +88,7 @@ return (function () { sock.binaryType = htmx.config.wsBinaryType; return sock; }, - version: "1.9.8" + version: "1.9.9" }; /** @type {import("./htmx").HtmxInternalApi} */ diff --git a/www/content/_index.md b/www/content/_index.md index c062fdcf..aeba05d3 100644 --- a/www/content/_index.md +++ b/www/content/_index.md @@ -35,7 +35,7 @@ By removing these arbitrary constraints, htmx completes HTML as a [hypertext](ht <h2>quick start</h2> ```html - <script src="https://unpkg.com/htmx.org@1.9.8"></script> + <script src="https://unpkg.com/htmx.org@1.9.9"></script> <!-- have a button POST a click via AJAX --> <button hx-post="/clicked" hx-swap="outerHTML"> Click Me diff --git a/www/content/docs.md b/www/content/docs.md index 9ab4f795..aa192a8a 100644 --- a/www/content/docs.md +++ b/www/content/docs.md @@ -114,7 +114,7 @@ The fastest way to get going with htmx is to load it via a CDN. You can simply a and get going: ```html -<script src="https://unpkg.com/htmx.org@1.9.8" integrity="sha384-EAzY246d6BpbWR7sQ8+WEm40J8c3dHFsqC58IgPlh4kMbRRI6P6WA+LA/qGAyAu8" crossorigin="anonymous"></script> +<script src="https://unpkg.com/htmx.org@1.9.9" integrity="sha384-EAzY246d6BpbWR7sQ8+WEm40J8c3dHFsqC58IgPlh4kMbRRI6P6WA+LA/qGAyAu8" crossorigin="anonymous"></script> ``` While the CDN approach is extremely simple, you may want to consider [not using CDNs in production](https://blog.wesleyac.com/posts/why-not-javascript-cdn). |