Skip to content

Commit

Permalink
Merge pull request #188 from ONSdigital/sml_fix_13.3.0_naming_issue
Browse files Browse the repository at this point in the history
fix release package naming discrepancy 13.3.0
  • Loading branch information
vidhyamanisankar authored Jul 16, 2024
2 parents 67d3edd + ef2277b commit 1011817
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ updates:
directory: "/"
schedule:
interval: "daily"
ignore:
- dependency-name: abatilo/actions-poetry
6 changes: 3 additions & 3 deletions .github/workflows/ci-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
- name: Run image ${{matrix.python-version}}
uses: abatilo/actions-poetry@v3.0.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.5.1
- name: Test ${{matrix.python-version}}
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3.0.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.5.1
- name: Run flake8
Expand All @@ -82,7 +82,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3.0.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.5.1
- name: Run Black
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "statistical_methods_library"
version = "13.1.2"
version = "13.3.0"
description = ""
authors = ["Your Name <you@example.com>"]
license = "MIT"
Expand Down
17 changes: 17 additions & 0 deletions release-notes/13.3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Statistical Methods Library 13.3.0

Release date: 2025-07-16

## Synopsis

This release imputation method accepts and appropriately handles cases where a value has been overridden by manual intervention or manual construction.

## Changes

The imputation method now has an optional imputation parameter named "manual_construction_col." When this argument is given together with the relevant column in the "input_df" dataframe, the method performs the manual construction and forwards imputes from manual construction for non-responders.


## Notes

When manual construction or forward imputation from manual construction is applied, the output will have the markers MC or FIMC.
This change has no impact on the link calculation.

0 comments on commit 1011817

Please sign in to comment.