Skip to content

Commit c03f6eb

Browse files
Release 0.1.0 (#4)
1 parent 0e20238 commit c03f6eb

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,13 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6+
7+
## 0.1.0 - 2022-05-30
8+
9+
_Initial release_
10+
11+
## Added
12+
13+
* Add `HtmxDetails` that facilitates working with `HX-*` request headers.
14+
* Add `HtmxMiddleware` that automatically adds an `HtmxDetails` instance as `scope["htmx"]`.
15+
* Add `HtmxRequest` that facilitates type hinting `request.scope["htmx"]` in Starlette-based frameworks.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212

1313
## Installation
1414

15-
Not on PyPI yet. For now, try `asgi-htmx` out by installing from git:
15+
**NOTE**: This is alpha software. Please be sure to pin your dependencies.
1616

1717
```
18-
pip install git+https://github.com/florimondmanca/asgi-htmx.git
18+
pip install asgi-htmx==0.1.*
1919
```
2020

2121
## Quickstart

src/asgi_htmx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
except ImportError: # pragma: no cover
77
pass # Starlette not installed.
88

9-
__version__ = "0.0.1"
9+
__version__ = "0.1.0"
1010

1111
__all__ = [
1212
"__version__",

0 commit comments

Comments
 (0)