Skip to content

Commit

Permalink
prep 1.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
1cg committed Oct 11, 2022
1 parent f962f00 commit 2c70dd4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ By removing these arbitrary constraints htmx completes HTML as a
## quick start

```html
<script src="https://unpkg.com/[email protected].0"></script>
<script src="https://unpkg.com/[email protected].1"></script>
<!-- have a button POST a click via AJAX -->
<button hx-post="/clicked" hx-swap="outerHTML">
Click Me
Expand Down
2 changes: 1 addition & 1 deletion dist/htmx.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ return (function () {
createWebSocket: function(url){
return new WebSocket(url, []);
},
version: "1.8.0"
version: "1.8.1"
};

/** @type {import("./htmx").HtmxInternalApi} */
Expand Down
2 changes: 1 addition & 1 deletion dist/htmx.min.js

Large diffs are not rendered by default.

Binary file modified dist/htmx.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/htmx.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ return (function () {
createWebSocket: function(url){
return new WebSocket(url, []);
},
version: "1.8.0"
version: "1.8.1"
};

/** @type {import("./htmx").HtmxInternalApi} */
Expand Down
2 changes: 1 addition & 1 deletion www/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,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/[email protected].0" integrity="sha384-cZuAZ+ZbwkNRnrKi05G/fjBX+azI9DNOkNYysZ0I/X5ZFgsmMiBXgDZof30F5ofc" crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected].1" integrity="sha384-DXaTz/CiqGNRLEu025rPC9D2gEK8Imn+w1e1QtdYD0Bap7LIcHOYjUZAO96YDCX3" 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).
Expand Down
4 changes: 2 additions & 2 deletions www/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ directly in HTML, using [attributes](https://htmx.org/reference#attributes), so
[modern user interfaces](https://htmx.org/examples) with the [simplicity](https://en.wikipedia.org/wiki/HATEOAS) and
[power](https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm) of hypertext

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

```html
<script src="https://unpkg.com/[email protected].0"></script>
<script src="https://unpkg.com/[email protected].1"></script>
<!-- have a button POST a click via AJAX -->
<button hx-post="/clicked" hx-swap="outerHTML">
Click Me
Expand Down
2 changes: 1 addition & 1 deletion www/js/htmx.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ return (function () {
createWebSocket: function(url){
return new WebSocket(url, []);
},
version: "1.8.0"
version: "1.8.1"
};

/** @type {import("./htmx").HtmxInternalApi} */
Expand Down
2 changes: 1 addition & 1 deletion www/test/1.8.1/src/htmx.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ return (function () {
createWebSocket: function(url){
return new WebSocket(url, []);
},
version: "1.8.0"
version: "1.8.1"
};

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

0 comments on commit 2c70dd4

Please sign in to comment.