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

+ 7 - 2
CHANGELOG.rst

@@ -1,5 +1,5 @@
-4.4.1 - unreleased
-------------------
+4.4.1 - August 21, 2026 (sha 093ef669598d9f324be28d400a851396739cf1d8)
+----------------------------------------------------------------------
 
 ## Fixes
 * **``cryptography`` is now declared as a dependency.**
@@ -22,6 +22,11 @@
   repository, so the source tree cannot satisfy the import in place of the
   installed wheel.
 
+## Pull Requests
+* Declare cryptography as a dependency, and guard bare installs by @nuwang in https://github.com/CloudVE/cloudbridge/pull/347
+
+**Full Changelog**: https://github.com/CloudVE/cloudbridge/compare/v4.4.0...v4.4.1
+
 4.4.0 - August 21, 2026 (sha 55d925d56eaad247b960ad00e636253637192549)
 ----------------------------------------------------------------------
 

+ 1 - 1
cloudbridge/__init__.py

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