Skip to content

Commit 94d4bba

Browse files
authored
🔖 Version 4.21.1 (#322)
1 parent 4060b94 commit 94d4bba

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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)

mindee/versions.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
__version__ = "4.21.0"
3+
__version__ = "4.21.1"
44

55
PYTHON_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):

0 commit comments

Comments
 (0)