Skip to content

Commit 0c4b98b

Browse files
author
semantic-release
committed
2.38.0
Automatically generated by python-semantic-release
1 parent 35ad82b commit 0c4b98b

3 files changed

Lines changed: 68 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,72 @@
22

33

44

5+
## v2.38.0 (2025-10-13)
6+
7+
### Feature
8+
9+
* feat: Adding segmented mean/min/max in TF and Pypark (#20)
10+
11+
* Adding segmented mean/min/max in TF and Pypark
12+
13+
* Delete output
14+
15+
* reduce line length
16+
17+
* fix: Listwise statistic transforms don't support integers
18+
19+
If you try and use integers with these layers they error due to the `float(nan)` and `is_finite` checks. Therefore we remove support for int here so we get a better error message.
20+
21+
* Add segmentation to existing listwise ops
22+
23+
* fix test
24+
25+
* remove unwanted model file
26+
27+
* remove repitition, remove casting
28+
29+
* adding typing and clean up mean
30+
31+
* handle edge case, remove redundant test with ints
32+
33+
* Update doc string for segmented op fn
34+
35+
* typo in some docstrings
36+
37+
* Remove repetition from Spark side
38+
39+
* Typo in doc string
40+
41+
* Fix wrong types, add type hint to segment function, fix examples.
42+
43+
* Correct some doc string issues
44+
45+
* remove comemnt from example
46+
47+
---------
48+
49+
Co-authored-by: Andrew Woods <anwoods@expediagroup.com>
50+
Co-authored-by: George Barrowclough <george.d.b@hotmail.com> ([`35ad82b`](https://github.com/ExpediaGroup/kamae/commit/35ad82bfc3d38ead25449939d6cf55e484df11e8))
51+
52+
### Refactor
53+
54+
* refactor: Add type hints everywhere and force type hints going forward (#27)
55+
56+
* docs: Add type hints everywhere and force type hints going forward
57+
58+
- Add flake8 config to ensure type hints are enforced via linting.
59+
60+
* docs: Remove unneeded self typehint
61+
62+
* tests: Add more layer serialisation tests (#30)
63+
64+
* fix: add serialisation wrapper to OneHotLayer alias
65+
66+
* chore: Update typehints for list rank
67+
68+
* chore: Fix linting ([`80d0bc7`](https://github.com/ExpediaGroup/kamae/commit/80d0bc7d036d809c7e4440e0f31fedbdc4b2cfa4))
69+
70+
571
## v2.37.0 (2025-08-28)
672

773
### Feature

src/kamae/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
transformation layers.
2020
"""
2121

22-
__version__ = "2.37.0"
22+
__version__ = "2.38.0"
2323
__name__ = "kamae"

tests/kamae/test_kamae.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from kamae import __version__
1616

17-
semantic_release_version = "2.37.0"
17+
semantic_release_version = "2.38.0"
1818

1919

2020
def test_version():

0 commit comments

Comments
 (0)