Skip to content

Commit

Permalink
Django IDOM v0.0.5 (#71)
Browse files Browse the repository at this point in the history
* idom proto -> types

* bump idom version to 0.37.2

* Django IDOM v0.0.5

* add fixed entry

* minor extra verbiage
  • Loading branch information
Archmonger authored Apr 5, 2022
1 parent f88a710 commit 92c0e42
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 13 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,27 @@ Types of changes are to be listed in this order

- Nothing (yet)

## [0.0.5] - 2022-04-04

### Changed

- Bumped the minimum IDOM version to 0.37.2

### Fixed

- ModuleNotFoundError: No module named `idom.core.proto` caused by IDOM 0.37.2

## [0.0.4] - 2022-03-05

### Changed

- Bumped the minimum IDOM client version to 0.37.1
- Bumped the minimum IDOM version to 0.37.1

## [0.0.3] - 2022-02-19

### Changed

- Bumped the minimum IDOM client version to 0.36.3
- Bumped the minimum IDOM version to 0.36.3

## [0.0.2] - 2022-01-30

Expand Down Expand Up @@ -71,6 +81,7 @@ Types of changes are to be listed in this order
- Support for IDOM within the Django

[unreleased]: https://github.com/idom-team/django-idom/compare/0.0.2...HEAD
[0.0.5]: https://github.com/idom-team/django-idom/compare/0.0.4...0.0.5
[0.0.4]: https://github.com/idom-team/django-idom/compare/0.0.3...0.0.4
[0.0.3]: https://github.com/idom-team/django-idom/compare/0.0.2...0.0.3
[0.0.2]: https://github.com/idom-team/django-idom/compare/0.0.1...0.0.2
Expand Down
2 changes: 1 addition & 1 deletion requirements/pkg-deps.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
channels <4.0.0
idom >=0.37.1, <0.38.0
idom >=0.37.2, <0.38.0
aiofile >=3.0, <4.0
2 changes: 1 addition & 1 deletion src/django_idom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from .websocket.paths import IDOM_WEBSOCKET_PATH


__version__ = "0.0.4"
__version__ = "0.0.5"
__all__ = ["IDOM_WEBSOCKET_PATH", "IdomWebsocket"]
2 changes: 1 addition & 1 deletion src/django_idom/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from django.conf import settings
from django.core.cache import DEFAULT_CACHE_ALIAS, caches
from idom.core.proto import ComponentConstructor
from idom.core.types import ComponentConstructor


IDOM_REGISTERED_COMPONENTS: Dict[str, ComponentConstructor] = {}
Expand Down
14 changes: 7 additions & 7 deletions src/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"rollup-plugin-replace": "^2.2.0"
},
"dependencies": {
"idom-client-react": "^0.37.1",
"idom-client-react": "^0.37.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
Expand Down

0 comments on commit 92c0e42

Please sign in to comment.