# HG changeset patch # User Vincent Hatakeyama <vincent.hatakeyama@xcg-consulting.fr> # Date 1733748764 -3600 # Mon Dec 09 13:52:44 2024 +0100 # Branch 18.0 # Node ID 6817ba127be3726a360fe1c31f9bdf638a31453a # Parent 383f632a4f838b9a8bab8f64dcdc41411dd42ebf Expose Context, NewinstanceType and build_context at the top level package diff --git a/NEWS.rst b/NEWS.rst --- a/NEWS.rst +++ b/NEWS.rst @@ -1,6 +1,11 @@ Changelog ========= +18.0.2.1.0 +---------- + +Expose Context, NewinstanceType and build_context at the top level package. + 18.0.2.0.2 ---------- diff --git a/__init__.py b/__init__.py --- a/__init__.py +++ b/__init__.py @@ -27,12 +27,15 @@ PHASE_UPDATE, Computed, Constant, + Context, ContextBuilder, Converter, Newinstance, + NewinstanceType, Readonly, Skip, message_to_odoo, + build_context, ) from .exception import InternalError from .field import Field, TranslatedSelection diff --git a/__manifest__.py b/__manifest__.py --- a/__manifest__.py +++ b/__manifest__.py @@ -21,7 +21,7 @@ "name": "Converter", "license": "AGPL-3", "summary": "Convert odoo records to/from plain data structures.", - "version": "18.0.2.0.2", + "version": "18.0.2.1.0", "category": "Hidden", "author": "XCG Consulting", "website": "https://orbeet.io/",