Skip to content

Commit

Permalink
bump: version 0.57.3 → 0.57.4
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 15, 2024
1 parent 9106035 commit f159516
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 30 deletions.
62 changes: 34 additions & 28 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.57.4 (2024-03-15)

### Fix

- do not force pascalcase for enum names. Closes #544 (#571)

## 0.57.3 (2024-03-14)

### Fix
Expand Down Expand Up @@ -309,24 +315,24 @@
### Fix

- correctly generate enum default values (#275)
- correctly generate type annotations

fix: do not generate default dataclass docstrings

fix: datetime model generation

the previous implementation did not roundtrip

feat: render docstrings in generated classes

fix: correct union and optional conversion

test: add avsc -> python -> avsc roundtrip test

fix: properly handle aliases in the model generator

tests: add coverage for single-type unions model generation

- correctly generate type annotations

fix: do not generate default dataclass docstrings

fix: datetime model generation

the previous implementation did not roundtrip

feat: render docstrings in generated classes

fix: correct union and optional conversion

test: add avsc -> python -> avsc roundtrip test

fix: properly handle aliases in the model generator

tests: add coverage for single-type unions model generation

Co-authored-by: Maximilian Hils <git@maximilianhils.com>

## 0.39.3 (2023-03-29)
Expand Down Expand Up @@ -432,16 +438,16 @@ Co-authored-by: Maximilian Hils <git@maximilianhils.com>
### Feat

- model generator added (#227)
- self relationship schema generation

feat: logicalTypes model generation

feat: logical types model generator

fix: field order, pascal case for class names

fix: add class Meta support

- self relationship schema generation

feat: logicalTypes model generation

feat: logical types model generator

fix: field order, pascal case for class names

fix: add class Meta support

Co-authored-by: Marcos Schroh <marcos.schroh@kpn.com>

## v0.34.6 (2023-01-06)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dataclasses-avroschema"
version = "0.57.3"
version = "0.57.4"
description = "Generate Avro Schemas from Python classes. Serialize/Deserialize python instances with avro schemas"
authors = ["Marcos Schroh <schrohm@gmail.com>"]
license = "MIT"
Expand Down Expand Up @@ -98,7 +98,7 @@ unfixable = []
"tests/model_generator/test_model_generator.py" = ["E501"]

[tool.commitizen]
version = "0.57.3"
version = "0.57.4"
tag_format = "$version"
version_files = [
"pyproject.toml:version",
Expand Down

0 comments on commit f159516

Please sign in to comment.