Nuwan Goonasekera 1 месяц назад
Родитель
Сommit
fe947106a3
2 измененных файлов с 15 добавлено и 3 удалено
  1. 14 2
      CHANGELOG.rst
  2. 1 1
      cloudbridge/__init__.py

+ 14 - 2
CHANGELOG.rst

@@ -1,5 +1,10 @@
-4.2.1 - unreleased
-------------------
+4.2.1 - July 10, 2026 (sha f06765d1100ec461908396475a4510460843a65c)
+--------------------------------------------------------------------
+
+## Release highlights
+This point release lowers the supported Python floor to 3.10 and adds
+response-header overrides to signed object URLs. Fully backward compatible
+with 4.2.0 — no code changes are required.
 
 ## What's new
 * **Supported Python floor lowered to 3.10.** ``requires-python`` was ``>=3.13``
@@ -15,6 +20,13 @@
   disposition via its tempurl ``filename`` parameter (the content type cannot be
   overridden). Both are ignored for writable URLs.
 
+## Pull Requests
+* Lower supported Python floor to 3.10 by @nuwang in https://github.com/CloudVE/cloudbridge/pull/338
+* Add response-header overrides to BucketObject.generate_url by @nuwang in https://github.com/CloudVE/cloudbridge/pull/339
+
+**Full Changelog**: https://github.com/CloudVE/cloudbridge/compare/v4.2.0...v4.2.1
+
+
 4.2.0 - July 9, 2026 (sha 60dbe305f0af46a7ce3eadd093756d31b8131b2e)
 -------------------------------------------------------------------
 

+ 1 - 1
cloudbridge/__init__.py

@@ -3,7 +3,7 @@ import logging
 from typing import Any
 
 # Current version of the library
-__version__ = '4.2.0'
+__version__ = '4.2.1'
 
 
 def get_version() -> str: