Skip to content

Commit 2c70dd4

Browse files
committed
prep 1.8.1 release
1 parent f962f00 commit 2c70dd4

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

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

3636
```html
37-
<script src="https://unpkg.com/htmx.org@1.8.0"></script>
37+
<script src="https://unpkg.com/htmx.org@1.8.1"></script>
3838
<!-- have a button POST a click via AJAX -->
3939
<button hx-post="/clicked" hx-swap="outerHTML">
4040
Click Me

dist/htmx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ return (function () {
7171
createWebSocket: function(url){
7272
return new WebSocket(url, []);
7373
},
74-
version: "1.8.0"
74+
version: "1.8.1"
7575
};
7676

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

dist/htmx.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/htmx.min.js.gz

0 Bytes
Binary file not shown.

src/htmx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ return (function () {
7171
createWebSocket: function(url){
7272
return new WebSocket(url, []);
7373
},
74-
version: "1.8.0"
74+
version: "1.8.1"
7575
};
7676

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

www/docs.md

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

115115
```html
116-
<script src="https://unpkg.com/htmx.org@1.8.0" integrity="sha384-cZuAZ+ZbwkNRnrKi05G/fjBX+azI9DNOkNYysZ0I/X5ZFgsmMiBXgDZof30F5ofc" crossorigin="anonymous"></script>
116+
<script src="https://unpkg.com/htmx.org@1.8.1" integrity="sha384-DXaTz/CiqGNRLEu025rPC9D2gEK8Imn+w1e1QtdYD0Bap7LIcHOYjUZAO96YDCX3" crossorigin="anonymous"></script>
117117
```
118118

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

www/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ directly in HTML, using [attributes](https://htmx.org/reference#attributes), so
1616
[modern user interfaces](https://htmx.org/examples) with the [simplicity](https://en.wikipedia.org/wiki/HATEOAS) and
1717
[power](https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm) of hypertext
1818

19-
htmx is small ([~10k min.gz'd](https://unpkg.com/htmx.org/dist/)),
19+
htmx is small ([~12k min.gz'd](https://unpkg.com/htmx.org/dist/)),
2020
[dependency-free](https://github.com/bigskysoftware/htmx/blob/master/package.json),
2121
[extendable](https://htmx.org/extensions) &
2222
IE11 compatible
@@ -33,7 +33,7 @@ By removing these arbitrary constraints, htmx completes HTML as a [hypertext](ht
3333
## quick start
3434

3535
```html
36-
<script src="https://unpkg.com/htmx.org@1.8.0"></script>
36+
<script src="https://unpkg.com/htmx.org@1.8.1"></script>
3737
<!-- have a button POST a click via AJAX -->
3838
<button hx-post="/clicked" hx-swap="outerHTML">
3939
Click Me

www/js/htmx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ return (function () {
7171
createWebSocket: function(url){
7272
return new WebSocket(url, []);
7373
},
74-
version: "1.8.0"
74+
version: "1.8.1"
7575
};
7676

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

www/test/1.8.1/src/htmx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ return (function () {
7171
createWebSocket: function(url){
7272
return new WebSocket(url, []);
7373
},
74-
version: "1.8.0"
74+
version: "1.8.1"
7575
};
7676

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

0 commit comments

Comments
 (0)