diff --git a/CHANGELOG.md b/CHANGELOG.md index 34fe4284..60ca4c33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ 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). +## [29.0.1] - 2024-12-12 +- Make httpx version specification less restrictive + ## [29.0.0] - 2024-12-12 - Downgrade manifested openapi version to 3.0.3 diff --git a/pyproject.toml b/pyproject.toml index a3ccb049..604f9b18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "winter" -version = "29.0.0" +version = "29.0.1" homepage = "https://github.com/WinterFramework/winter" description = "Web Framework with focus on python typing, dataclasses and modular design" authors = ["Alexander Egorov "] @@ -44,7 +44,7 @@ openapi-pydantic = ">=0.5.0, <0.6" pydantic = ">=1.10, <2" openapi-spec-validator = ">=0.5.7, <1" uritemplate = ">=4.1.1, <5" -httpx = ">=0.27.0, <0.28" +httpx = ">=0.24.1, <0.28" [tool.poetry.dev-dependencies] flake8 = ">=3.7.7, <4"