Skip to content

Commit 25b2c12

Browse files
authored
v3.0.0a2 (#126)
1 parent 9fd30aa commit 25b2c12

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Using the following categories, list your changes in this order:
3636

3737
- Nothing (yet)
3838

39-
## [3.0.0a1] - 2023-02-02
39+
## [3.0.0a2] - 2023-02-02
4040

4141
???+ note
4242

@@ -246,8 +246,8 @@ Using the following categories, list your changes in this order:
246246

247247
- Support for IDOM within the Django
248248

249-
[unreleased]: https://github.com/idom-team/django-idom/compare/3.0.0a1...HEAD
250-
[3.0.0a1]: https://github.com/idom-team/django-idom/compare/2.2.1...3.0.0a1
249+
[unreleased]: https://github.com/idom-team/django-idom/compare/3.0.0a2...HEAD
250+
[3.0.0a2]: https://github.com/idom-team/django-idom/compare/2.2.1...3.0.0a2
251251
[2.2.1]: https://github.com/idom-team/django-idom/compare/2.2.0...2.2.1
252252
[2.2.0]: https://github.com/idom-team/django-idom/compare/2.1.0...2.2.0
253253
[2.1.0]: https://github.com/idom-team/django-idom/compare/2.0.1...2.1.0

docs/src/features/components.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Allows you to defer loading a CSS stylesheet until a component begins rendering.
184184
| --- | --- |
185185
| `Component` | An IDOM component. |
186186

187-
??? question "Should I put `django_css` at the top of my component?"
187+
??? question "Should I put `django_css` at the top of my HTML?"
188188

189189
Yes, if the stylesheet contains styling for your component.
190190

@@ -239,7 +239,7 @@ Allows you to defer loading JavaScript until a component begins rendering. This
239239
| --- | --- |
240240
| `Component` | An IDOM component. |
241241

242-
??? question "Should I put `django_js` at the bottom of my component?"
242+
??? question "Should I put `django_js` at the bottom of my HTML?"
243243

244244
Yes, if your scripts are reliant on the contents of the component.
245245

docs/src/features/utils.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
This is the default postprocessor for the `use_query` hook.
1212

13-
This postprocessor is designed to prevent Django's `SynchronousOnlyException` by recursively fetching all fields within a `Model` or `QuerySet` to prevent [lazy execution](https://docs.djangoproject.com/en/dev/topics/db/queries/#querysets-are-lazy).
13+
This postprocessor is designed to avoid Django's `SynchronousOnlyException` by recursively fetching all fields within a `Model` or `QuerySet` to prevent [lazy execution](https://docs.djangoproject.com/en/dev/topics/db/queries/#querysets-are-lazy).
1414

1515
=== "components.py"
1616

requirements/pkg-deps.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
channels >=4.0.0
2-
idom >=1.0.0a2, <1.1.0
2+
idom >=1.0.0a3, <1.1.0
33
aiofile >=3.0
44
dill >=0.3.5
55
typing_extensions

src/django_idom/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from django_idom.websocket.paths import IDOM_WEBSOCKET_PATH
33

44

5-
__version__ = "3.0.0a1"
5+
__version__ = "3.0.0a2"
66
__all__ = [
77
"IDOM_WEBSOCKET_PATH",
88
"hooks",

src/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"@rollup/plugin-replace": "^5.0.2"
1818
},
1919
"dependencies": {
20-
"idom-client-react": "^1.0.0-a2"
20+
"idom-client-react": "^1.0.0-a3"
2121
}
2222
}

0 commit comments

Comments
 (0)