Skip to content

Commit 92c0e42

Browse files
authored
Django IDOM v0.0.5 (#71)
* idom proto -> types * bump idom version to 0.37.2 * Django IDOM v0.0.5 * add fixed entry * minor extra verbiage
1 parent f88a710 commit 92c0e42

File tree

6 files changed

+24
-13
lines changed

6 files changed

+24
-13
lines changed

Diff for: CHANGELOG.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,27 @@ Types of changes are to be listed in this order
1919

2020
- Nothing (yet)
2121

22+
## [0.0.5] - 2022-04-04
23+
24+
### Changed
25+
26+
- Bumped the minimum IDOM version to 0.37.2
27+
28+
### Fixed
29+
30+
- ModuleNotFoundError: No module named `idom.core.proto` caused by IDOM 0.37.2
31+
2232
## [0.0.4] - 2022-03-05
2333

2434
### Changed
2535

26-
- Bumped the minimum IDOM client version to 0.37.1
36+
- Bumped the minimum IDOM version to 0.37.1
2737

2838
## [0.0.3] - 2022-02-19
2939

3040
### Changed
3141

32-
- Bumped the minimum IDOM client version to 0.36.3
42+
- Bumped the minimum IDOM version to 0.36.3
3343

3444
## [0.0.2] - 2022-01-30
3545

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

7383
[unreleased]: https://github.com/idom-team/django-idom/compare/0.0.2...HEAD
84+
[0.0.5]: https://github.com/idom-team/django-idom/compare/0.0.4...0.0.5
7485
[0.0.4]: https://github.com/idom-team/django-idom/compare/0.0.3...0.0.4
7586
[0.0.3]: https://github.com/idom-team/django-idom/compare/0.0.2...0.0.3
7687
[0.0.2]: https://github.com/idom-team/django-idom/compare/0.0.1...0.0.2

Diff for: requirements/pkg-deps.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
channels <4.0.0
2-
idom >=0.37.1, <0.38.0
2+
idom >=0.37.2, <0.38.0
33
aiofile >=3.0, <4.0

Diff for: src/django_idom/__init__.py

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

44

5-
__version__ = "0.0.4"
5+
__version__ = "0.0.5"
66
__all__ = ["IDOM_WEBSOCKET_PATH", "IdomWebsocket"]

Diff for: src/django_idom/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from django.conf import settings
44
from django.core.cache import DEFAULT_CACHE_ALIAS, caches
5-
from idom.core.proto import ComponentConstructor
5+
from idom.core.types import ComponentConstructor
66

77

88
IDOM_REGISTERED_COMPONENTS: Dict[str, ComponentConstructor] = {}

Diff for: src/js/package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"rollup-plugin-replace": "^2.2.0"
1717
},
1818
"dependencies": {
19-
"idom-client-react": "^0.37.1",
19+
"idom-client-react": "^0.37.2",
2020
"react": "^17.0.2",
2121
"react-dom": "^17.0.2"
2222
}

0 commit comments

Comments
 (0)