Skip to content

Release 3.2.10 #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ on:
jobs:
oed_spec:
if: inputs.oed_spec_branch != ''
uses: OasisLMF/ODS_OpenExposureData/.github/workflows/build.yml@develop
uses: OasisLMF/ODS_OpenExposureData/.github/workflows/build.yml@main
secrets: inherit
with:
ods_branch: ${{ inputs.oed_spec_branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-oasislmf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
required: false

env:
oasislmf_branch: ${{ github.event_name != 'workflow_dispatch' && 'main' || inputs.oasislmf_branch }}
oasislmf_branch: ${{ github.event_name != 'workflow_dispatch' && 'stable/2.3.x' || inputs.oasislmf_branch }}

jobs:
build_ods:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
secrets: inherit
with:
ods_branch: ${{ github.ref }}
platform_branch: ${{ github.event_name != 'workflow_dispatch' && 'main' || inputs.platform_branch }}
platform_branch: ${{ github.event_name != 'workflow_dispatch' && 'stable/2.3.x' || inputs.platform_branch }}
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
ODS_Tools Changelog
===================

`3.2.10`_
---------
* [#167](https://github.com/OasisLMF/ODS_Tools/pull/169) - Fix default for do_disaggregation in schema
* [#172](https://github.com/OasisLMF/ODS_Tools/pull/172) - CI Fix - branches renamed in OED repo
.. _`3.2.10`: https://github.com/OasisLMF/ODS_Tools/compare/3.2.9...3.2.10

`3.2.9`_
---------
* [#148](https://github.com/OasisLMF/ODS_Tools/pull/162) - PLA options to be added into MS/AS schemas explicitly
Expand Down
2 changes: 1 addition & 1 deletion ods_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '3.2.9'
__version__ = '3.2.10'

import logging

Expand Down
2 changes: 1 addition & 1 deletion ods_tools/data/analysis_settings_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@
"type": "boolean",
"title": "Apply Oasis Disaggregation",
"description": "Set whether to split terms and conditions for aggregate exposure (optional)",
"default": false
"default": true
},
"pla_secondary_factor": {
"type": "number",
Expand Down
2 changes: 1 addition & 1 deletion ods_tools/data/model_settings_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@
"type": "boolean",
"title": "Apply Oasis Disaggregation",
"description": "Set whether to split terms and conditions for aggregate exposure (optional)",
"default": false
"default": true
},
"string_parameters":{
"title":"Single string paramters",
Expand Down