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 1
1
# Mindee Python API Library Changelog
2
2
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
+
3
8
## v4.21.0 - 2025-04-16
4
9
### Changes
5
10
* :sparkles : add support for RAG parameter in workflow executions (#319 )
Original file line number Diff line number Diff line change 1
1
import sys
2
2
3
- __version__ = "4.21.0 "
3
+ __version__ = "4.21.1 "
4
4
5
5
PYTHON_VERSION = f"{ sys .version_info [0 ]} .{ sys .version_info [1 ]} "
6
6
@@ -12,7 +12,8 @@ def get_platform() -> str:
12
12
"win32" : "windows" ,
13
13
"darwin" : "macos" ,
14
14
"aix" : "aix" ,
15
- "freebsd" : "freebsd" ,
15
+ "freebsd" : "bsd" ,
16
+ "openbsd" : "bsd" ,
16
17
}
17
18
for name , agent_name in platforms .items ():
18
19
if sys .platform .startswith (name ):
You can’t perform that action at this time.
0 commit comments