diff --git a/.bumpversion.app b/.bumpversion.app index 1f2bee4..9a82e42 100644 --- a/.bumpversion.app +++ b/.bumpversion.app @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.10.1 +current_version = 2.10.2 allow_dirty = True [bumpversion:file:VERSION] diff --git a/VERSION b/VERSION index 4d70ca3..47b8364 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ # Do not update directly, use `make bump-version` instead or see `README.md` for further instructions -2.10.1 +2.10.2 diff --git a/movici_simulation_core/__init__.py b/movici_simulation_core/__init__.py index 830f329..1d49d9d 100644 --- a/movici_simulation_core/__init__.py +++ b/movici_simulation_core/__init__.py @@ -83,4 +83,4 @@ "UpdateDataClient", ] -__version__ = "2.10.1" +__version__ = "2.10.2" diff --git a/movici_simulation_core/json_schemas/models/evacuation_point_resolution.json b/movici_simulation_core/json_schemas/models/evacuation_point_resolution.json index b79e639..453bde9 100644 --- a/movici_simulation_core/json_schemas/models/evacuation_point_resolution.json +++ b/movici_simulation_core/json_schemas/models/evacuation_point_resolution.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "/evacuation_point_resolution/1.0.0", + "$id": "/evacuation_point_resolution/1.1.0", "required": [ "dataset" ], diff --git a/setup.py b/setup.py index 2b355fc..b612347 100755 --- a/setup.py +++ b/setup.py @@ -85,6 +85,7 @@ def read_file_or_empty_str(file, comment_tag=None): f"corridor = {MODEL_PATH}.corridor.model:Model", f"csv_player = {MODEL_PATH}.csv_player.csv_player:CSVPlayer", f"data_collector = {MODEL_PATH}.data_collector.data_collector:DataCollector", + f"evacuation_point_resolution = {MODEL_PATH}.evacuation_point_resolution:EvacuatonPointResolution", # noqa: E501 f"generalized_journey_time = {MODEL_PATH}.generalized_journey_time.gjt_model:GJTModel", f"netcdf_player = {MODEL_PATH}.netcdf_player.netcdf_player:NetCDFPlayer", f"operational_status = {MODEL_PATH}:OperationalStatusModel",