Skip to content

Commit df9f4f6

Browse files
committed
Bump to version 0.42.1.
1 parent 7c2497d commit df9f4f6

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

DEVELOPING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
1. `poe t`
2424
1. `poe jb`
2525
1. `poetry version major|minor|patch`
26-
1. Update django-unicorn.com's changelog.md
26+
1. Update changelog.md
2727
1. Commit/tag/push version bump
2828
1. `poetry publish --build -r test`
2929
1. Make sure test package can be installed as expected (https://test.pypi.org/project/django-unicorn/)

docs/source/changelog.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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.
@@ -10,7 +18,7 @@
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

docs/source/conf.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
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

@@ -23,8 +20,9 @@
2320
copyright = "2021, Adam Hill"
2421
author = "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 ---------------------------------------------------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-unicorn"
3-
version = "0.42.0"
3+
version = "0.42.1"
44
description = "A magical full-stack framework for Django."
55
authors = ["Adam Hill <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)