Skip to content

Commit

Permalink
v3.0.0a2 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger authored Feb 3, 2023
1 parent 9fd30aa commit 25b2c12
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Using the following categories, list your changes in this order:

- Nothing (yet)

## [3.0.0a1] - 2023-02-02
## [3.0.0a2] - 2023-02-02

???+ note

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

- Support for IDOM within the Django

[unreleased]: https://github.com/idom-team/django-idom/compare/3.0.0a1...HEAD
[3.0.0a1]: https://github.com/idom-team/django-idom/compare/2.2.1...3.0.0a1
[unreleased]: https://github.com/idom-team/django-idom/compare/3.0.0a2...HEAD
[3.0.0a2]: https://github.com/idom-team/django-idom/compare/2.2.1...3.0.0a2
[2.2.1]: https://github.com/idom-team/django-idom/compare/2.2.0...2.2.1
[2.2.0]: https://github.com/idom-team/django-idom/compare/2.1.0...2.2.0
[2.1.0]: https://github.com/idom-team/django-idom/compare/2.0.1...2.1.0
Expand Down
4 changes: 2 additions & 2 deletions docs/src/features/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Allows you to defer loading a CSS stylesheet until a component begins rendering.
| --- | --- |
| `Component` | An IDOM component. |

??? question "Should I put `django_css` at the top of my component?"
??? question "Should I put `django_css` at the top of my HTML?"

Yes, if the stylesheet contains styling for your component.

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

??? question "Should I put `django_js` at the bottom of my component?"
??? question "Should I put `django_js` at the bottom of my HTML?"

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

Expand Down
2 changes: 1 addition & 1 deletion docs/src/features/utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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

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

=== "components.py"

Expand Down
2 changes: 1 addition & 1 deletion requirements/pkg-deps.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
channels >=4.0.0
idom >=1.0.0a2, <1.1.0
idom >=1.0.0a3, <1.1.0
aiofile >=3.0
dill >=0.3.5
typing_extensions
2 changes: 1 addition & 1 deletion src/django_idom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from django_idom.websocket.paths import IDOM_WEBSOCKET_PATH


__version__ = "3.0.0a1"
__version__ = "3.0.0a2"
__all__ = [
"IDOM_WEBSOCKET_PATH",
"hooks",
Expand Down
2 changes: 1 addition & 1 deletion src/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"@rollup/plugin-replace": "^5.0.2"
},
"dependencies": {
"idom-client-react": "^1.0.0-a2"
"idom-client-react": "^1.0.0-a3"
}
}

0 comments on commit 25b2c12

Please sign in to comment.