Skip to content

Commit 3f8a281

Browse files
committed
Bump to 0.65.0.
1 parent c0fa058 commit 3f8a281

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

DEVELOPING.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@
3636

3737
## Release
3838

39-
1. Update `CHANGELOG.md`
40-
1. Tag the release: `git tag v0.63.0`
41-
1. Push the tag: `git push origin v0.63.0`
39+
1. Update `docs/source/changelog.md`
40+
1. Update version in `pyproject.toml`
41+
1. Commit changes
42+
1. Tag the release: `git tag 0.65.0`
43+
1. Push the tag: `git push origin --tags`
4244
1. The GitHub Action will automatically:
4345
- Build the JavaScript assets with the correct version
4446
- Build the Python package with the correct version

docs/source/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.65.0
4+
5+
- Properly escape single quotes in Unicorn.call() arguments [#773](https://github.com/adamghill/django-unicorn/pull/773) by [JohananOppongAmoateng](https://github.com/JohananOppongAmoateng).
6+
- Automatally initialize components via MutationObserver [#760](https://github.com/adamghill/django-unicorn/pull/760) by [JohananOppongAmoateng](https://github.com/JohananOppongAmoateng).
7+
- Support HTTP redirect from mount() [#767](https://github.com/adamghill/django-unicorn/pull/767) by [JohananOppongAmoateng](https://github.com/JohananOppongAmoateng).
8+
- Fix: `IndexError` when using a custom setter method with $event.target.value by [#761](https://github.com/adamghill/django-unicorn/pull/761) by [JohananOppongAmoateng](https://github.com/JohananOppongAmoateng).
9+
- Fix: correct debounce behavior with delay [#764](https://github.com/adamghill/django-unicorn/pull/764) by [JohananOppongAmoateng](https://github.com/JohananOppongAmoateng).
10+
- Fix: prevent poll from overwriting many-to-many fields [#769](https://github.com/adamghill/django-unicorn/pull/769) by [JohananOppongAmoateng](https://github.com/JohananOppongAmoateng).
11+
12+
313
## 0.64.0
414

515
- Switch to `lxml` instead of `beautifulsoup` for improved HTML parsing performance.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "django-unicorn"
3-
version = "0.64.0"
3+
version = "0.65.0"
44
description = "A magical full-stack framework for Django."
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)