Skip to content

Commit ff20f88

Browse files
committed
bump for next version
1 parent eecc96c commit ff20f88

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
## [1.9.6] - ???
4+
35
## [1.9.5] - 2023-08-25
46

57
* Web sockets now properly pass the target id in the HEADERS struct

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ By removing these arbitrary constraints htmx completes HTML as a
3333
## quick start
3434

3535
```html
36-
<script src="https://unpkg.com/[email protected].5"></script>
36+
<script src="https://unpkg.com/[email protected].6"></script>
3737
<!-- have a button POST a click via AJAX -->
3838
<button hx-post="/clicked" hx-swap="outerHTML">
3939
Click Me

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"AJAX",
66
"HTML"
77
],
8-
"version": "1.9.5",
8+
"version": "1.9.6",
99
"homepage": "https://htmx.org/",
1010
"bugs": {
1111
"url": "https://github.com/bigskysoftware/htmx/issues"

src/htmx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ return (function () {
8686
sock.binaryType = htmx.config.wsBinaryType;
8787
return sock;
8888
},
89-
version: "1.9.5"
89+
version: "1.9.6"
9090
};
9191

9292
/** @type {import("./htmx").HtmxInternalApi} */

www/content/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ By removing these arbitrary constraints, htmx completes HTML as a [hypertext](ht
3535
<h2>quick start</h2>
3636

3737
```html
38-
<script src="https://unpkg.com/[email protected].5"></script>
38+
<script src="https://unpkg.com/[email protected].6"></script>
3939
<!-- have a button POST a click via AJAX -->
4040
<button hx-post="/clicked" hx-swap="outerHTML">
4141
Click Me

www/content/docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ The fastest way to get going with htmx is to load it via a CDN. You can simply a
114114
and get going:
115115

116116
```html
117-
<script src="https://unpkg.com/[email protected].5" integrity="sha384-xcuj3WpfgjlKF+FXhSQFQ0ZNr39ln+hwjN3npfM9VBnUskLolQAcN80McRIVOPuO" crossorigin="anonymous"></script>
117+
<script src="https://unpkg.com/[email protected].6" integrity="sha384-TODO" crossorigin="anonymous"></script>
118118
```
119119

120120
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).

0 commit comments

Comments
 (0)