From 6c706aff8ca89fbb476896d64aac7e0956b8e954 Mon Sep 17 00:00:00 2001 From: Mikhail Iurkov Date: Sun, 17 Sep 2023 23:29:20 +0200 Subject: [PATCH 1/2] `profile` in `content_info` --- pyuploadcare/api/entities.py | 1 + 1 file changed, 1 insertion(+) 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] From f482161b25c50f69f97c01f4ae97d818300dc2d3 Mon Sep 17 00:00:00 2001 From: Evgeniy Kirov Date: Thu, 5 Oct 2023 17:44:57 +0200 Subject: [PATCH 2/2] changelog for 4.1.3 --- HISTORY.md | 5 +++++ 1 file changed, 5 insertions(+) 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).