summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--README.md2
-rw-r--r--package.json2
-rw-r--r--src/htmx.js2
-rw-r--r--www/content/_index.md2
-rw-r--r--www/content/docs.md2
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
diff --git a/README.md b/README.md
index 556a2efe..81d21bcd 100644
--- a/README.md
+++ b/README.md
@@ -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).