Skip to content

Commit 2686ebb

Browse files
authored
Merge pull request #53 from dnv-opensource/fix-regression-introduced-with-050
Fix regression introduced with 050
2 parents ccdb327 + b3677bb commit 2686ebb

8 files changed

Lines changed: 19 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e
88
* -/-
99

1010

11+
## [0.5.1] - 2026-04-10
12+
13+
### Solved
14+
* Fixed a regression introduced with [0.5.0] where imports from `farn.core` did not work as before (i.e. in [0.4.4]). That has not been an intended change but a regression. Hence corrected with release [0.5.1]
15+
16+
1117
## [0.5.0] - 2026-04-09
1218

1319
### BREAKING Changes
@@ -595,7 +601,9 @@ Users are encouraged to update to this version.
595601
* Added support for Python 3.10
596602

597603
<!-- Markdown link & img dfn's -->
598-
[unreleased]: https://github.com/dnv-opensource/farn/compare/v0.4.4...HEAD
604+
[unreleased]: https://github.com/dnv-opensource/farn/compare/v0.5.1...HEAD
605+
[0.5.1]: https://github.com/dnv-opensource/farn/compare/v0.5.0...v0.5.1
606+
[0.5.0]: https://github.com/dnv-opensource/farn/compare/v0.4.4...v0.5.0
599607
[0.4.4]: https://github.com/dnv-opensource/farn/compare/v0.4.3...v0.4.4
600608
[0.4.3]: https://github.com/dnv-opensource/farn/compare/v0.4.2...v0.4.3
601609
[0.4.2]: https://github.com/dnv-opensource/farn/compare/v0.4.1...v0.4.2

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title: farn
2-
version: 0.5.0
2+
version: 0.5.1
33
abstract: >-
44
Python package to generate an n-dimensional case folder structure applying linear and spatial sampling strategies.
55
type: software

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
author = "Frank Lumpitzsch, Claas Rostock, Seunghyeon Yoo"
2626

2727
# The full version, including alpha/beta/rc tags
28-
release = "0.5.0"
28+
release = "0.5.1"
2929

3030
# -- General configuration ---------------------------------------------------
3131
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ allow-direct-references = true
2727

2828
[project]
2929
name = "farn"
30-
version = "0.5.0"
30+
version = "0.5.1"
3131
description = "Python package to generate an n-dimensional case folder structure applying linear and spatial sampling strategies."
3232
readme = "README.md"
3333
requires-python = ">= 3.11"

src/farn/batch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from farn.batch.batch_processor import AsyncBatchProcessor
1+
from farn.batch.batch_processor import AsyncBatchProcessor as AsyncBatchProcessor

src/farn/core/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from farn.core.parameter import Parameter
21
from farn.core.case import (
3-
CaseStatus,
4-
Case,
5-
Cases,
2+
CaseStatus as CaseStatus,
3+
Case as Case,
4+
Cases as Cases,
65
)
6+
from farn.core.parameter import Parameter as Parameter

src/farn/sampling/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from farn.sampling.discrete import DiscreteSampling
1+
from farn.sampling.discrete import DiscreteSampling as DiscreteSampling

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)