We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e32822 commit 6a13c14Copy full SHA for 6a13c14
2 files changed
CHANGELOG.md
@@ -1,3 +1,16 @@
1
+v2.5.0
2
+======
3
+
4
+* Introduce base class for encoders
5
+* Introduce tagging system on encoders and use it to parametrize tests
6
+* Drop support for python 3.5 and python 3.6
7
+* Require pandas >=1.0
8
+* Introduce f-strings
9
+* Make BinaryEncoder a BaseNEncoder for base=2
10
+* FutureWarning for TargetEncoder's default parameters
11
+* Made all encoders re-fittable on different datasets (c.f. issue 122)
12
+* Introduced tox.ini file for easier version testing
13
14
v2.4.1
15
======
16
category_encoders/__init__.py
@@ -25,7 +25,7 @@
25
from category_encoders.glmm import GLMMEncoder
26
from category_encoders.quantile_encoder import QuantileEncoder, SummaryEncoder
27
28
-__version__ = '2.4.1'
+__version__ = '2.5.0'
29
30
__author__ = "willmcginnis", "cmougan"
31
0 commit comments