diff --git a/HISTORY.md b/HISTORY.md index dc61c958..89dcbd95 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -8,6 +8,11 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [4.1.3](https://github.com/uploadcare/pyuploadcare/compare/v4.1.2...v4.1.3) - 2023-10-05 +### Added + +- For `AudioStreamInfo`: + - added `profile` field. + ### Changed - `pyuploadcare` now officially supports Python 3.12 (please notice that if you're using Django, that doesn't support Python 3.12 as of yet). diff --git a/pyuploadcare/api/entities.py b/pyuploadcare/api/entities.py index 1fdbfbd6..c8f5c052 100644 --- a/pyuploadcare/api/entities.py +++ b/pyuploadcare/api/entities.py @@ -68,6 +68,7 @@ class AudioStreamInfo(Entity): bitrate: Optional[Decimal] codec: Optional[str] sample_rate: Optional[Decimal] + profile: Optional[str] channels: Optional[str]