Skip to content

Commit

Permalink
Fix version number (#137)
Browse files Browse the repository at this point in the history
* Fix version for `django-reactpy`

* add version
  • Loading branch information
Archmonger authored Mar 30, 2023
1 parent 2113a57 commit 1abf4cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ Using the following categories, list your changes in this order:

## [Unreleased]

## [3.0.0-reactpy] - 2023-03-30

### Changed

- `django-idom` has been renamed to `reactpy-django`! Please note that all references to the word `idom` in your code should be changed to `reactpy`. See the docs for more details.

## [3.0.0] - 2023-03-08
Expand Down Expand Up @@ -248,7 +252,8 @@ Using the following categories, list your changes in this order:

- Support for IDOM within the Django

[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.0.0...HEAD
[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.0.0-reactpy...HEAD
[3.0.0-reactpy]: https://github.com/reactive-python/reactpy-django/compare/3.0.0...3.0.0-reactpy
[3.0.0]: https://github.com/reactive-python/reactpy-django/compare/2.2.1...3.0.0
[2.2.1]: https://github.com/reactive-python/reactpy-django/compare/2.2.0...2.2.1
[2.2.0]: https://github.com/reactive-python/reactpy-django/compare/2.1.0...2.2.0
Expand Down
2 changes: 1 addition & 1 deletion src/reactpy_django/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from reactpy_django.websocket.paths import REACTPY_WEBSOCKET_PATH


__version__ = "3.0.0a4"
__version__ = "3.0.0"
__all__ = [
"REACTPY_WEBSOCKET_PATH",
"hooks",
Expand Down

0 comments on commit 1abf4cd

Please sign in to comment.