diff options
-rw-r--r-- | CHANGES.md | 7 | ||||
-rw-r--r-- | ishtar_common/models_imports.py | 2 | ||||
-rw-r--r-- | ishtar_common/version.py | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md index 77ba1f3cd..111f1d5cd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,12 +1,17 @@ --- title: Ishtar changelog -date: 2023-01-13 +date: 2023-01-18 --- Ishtar changelog ================ +v4.0.35 - 2023-01-18 +-------------------- + ### Bug fixes ### +- WIP: fix types searches with * +- Imports: fix cultural attribution import - Table: fix default sort when pk is not "id" - Sheet: - warehouse: fix localisation - fix data diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py index d4f8b5698..33463e181 100644 --- a/ishtar_common/models_imports.py +++ b/ishtar_common/models_imports.py @@ -924,6 +924,8 @@ TARGET_MODELS = [ ("ishtar_common.models.DocumentTag", _("Document tag")), ("ishtar_common.models.Language", _("Language")), ("ishtar_common.models.SupportType", _("Support type")), + ("archaeological_operations.models.CulturalAttributionType", + _("Cultural attribution type")), ("archaeological_operations.models.OperationType", _("Operation type")), ("archaeological_operations.models.Period", _("Period")), ("archaeological_operations.models.ReportState", _("Report state")), diff --git a/ishtar_common/version.py b/ishtar_common/version.py index 22164ed2b..9f6179b04 100644 --- a/ishtar_common/version.py +++ b/ishtar_common/version.py @@ -1,5 +1,5 @@ -# 4.0.34 -VERSION = (4, 0, 34) +# 4.0.35 +VERSION = (4, 0, 35) def get_version(): |