File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11# Mindee Python API Library Changelog
22
3+ ## v4.21.1 - 2025-04-28
4+ ### Fixes
5+ * :bug : fix for Python 3.10 and lower: server uses 'Z' in date string
6+
7+
38## v4.21.0 - 2025-04-16
49### Changes
510* :sparkles : add support for RAG parameter in workflow executions (#319 )
Original file line number Diff line number Diff line change 11import sys
22
3- __version__ = "4.21.0 "
3+ __version__ = "4.21.1 "
44
55PYTHON_VERSION = f"{ sys .version_info [0 ]} .{ sys .version_info [1 ]} "
66
@@ -12,7 +12,8 @@ def get_platform() -> str:
1212 "win32" : "windows" ,
1313 "darwin" : "macos" ,
1414 "aix" : "aix" ,
15- "freebsd" : "freebsd" ,
15+ "freebsd" : "bsd" ,
16+ "openbsd" : "bsd" ,
1617 }
1718 for name , agent_name in platforms .items ():
1819 if sys .platform .startswith (name ):
You can’t perform that action at this time.
0 commit comments