File tree Expand file tree Collapse file tree 4 files changed +16
-10
lines changed Expand file tree Collapse file tree 4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 23231 . ` poe t `
24241 . ` poe jb `
25251 . ` poetry version major|minor|patch `
26- 1 . Update django-unicorn.com's changelog.md
26+ 1 . Update changelog.md
27271 . Commit/tag/push version bump
28281 . ` poetry publish --build -r test `
29291 . Make sure test package can be installed as expected (https://test.pypi.org/project/django-unicorn/ )
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.42.1
4+
5+ - Fix bug where dictionaries in a component would generate incorrect checksums and trigger a ` Checksum does not match ` error
6+ - Remove some serializations that was happening unnecessarily on every render
7+ - Add Python 3.10 and Django 4.0 to test matrix
8+
9+ [ All changes since 0.42.0] ( https://github.com/adamghill/django-unicorn/compare/0.42.0...0.42.1 ) .
10+
311## v0.42.0
412
513- Remove all blank spaces from JSON responses.
1018
1119- Bump supported Python to >=3.7.
1220
13- [ All changes since 0.42.0 ] ( https://github.com/adamghill/django-unicorn/compare/0.41.2...0.42.0 ) .
21+ [ All changes since 0.41.2 ] ( https://github.com/adamghill/django-unicorn/compare/0.41.2...0.42.0 ) .
1422
1523## v0.41.2
1624
Original file line number Diff line number Diff line change 1- # Configuration file for the Sphinx documentation builder.
2- #
3- # This file only contains a selection of the most common options. For a full
4- # list see the documentation:
5- # https://www.sphinx-doc.org/en/master/usage/configuration.html
1+ import toml
2+
63
74# -- Path setup --------------------------------------------------------------
85
2320copyright = "2021, Adam Hill"
2421author = "Adam Hill"
2522
26- # The full version, including alpha/beta/rc tags
27- release = "0.42.0"
23+ pyproject = toml .load ("../../pyproject.toml" )
24+ version = pyproject ["tool" ]["poetry" ]["version" ]
25+ release = version
2826
2927
3028# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " django-unicorn"
3- version = " 0.42.0 "
3+ version = " 0.42.1 "
44description = " A magical full-stack framework for Django."
55authors = [
" Adam Hill <[email protected] >" ]
66license = " MIT"
You can’t perform that action at this time.
0 commit comments