diff --git a/CHANGELOG.md b/CHANGELOG.md index 392294ef..5b1bb41e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.57.1 (2024-02-22) + +### Fix + +- pass to fastavro all schemas in a single call (#553) + ## 0.57.0 (2024-02-16) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 9569476e..90eabce6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dataclasses-avroschema" -version = "0.57.0" +version = "0.57.1" description = "Generate Avro Schemas from Python classes. Serialize/Deserialize python instances with avro schemas" authors = ["Marcos Schroh "] license = "MIT" @@ -98,7 +98,7 @@ unfixable = [] "tests/model_generator/test_model_generator.py" = ["E501"] [tool.commitizen] -version = "0.57.0" +version = "0.57.1" tag_format = "$version" version_files = [ "pyproject.toml:version",