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 9bcc9ce commit 4a48107Copy full SHA for 4a48107
CHANGELOG.md
@@ -1,3 +1,15 @@
1
+v2.4.0
2
+======
3
+
4
+* improved documentation
5
+* fix bug in CatBoost encoder
6
+* fix future warnings with pandas
7
+* added tests for python 3.9 and 3.10 in pipeline
8
+* fix treating np.NaN and python None equal
9
+* only build docs on release
10
+* unified conversion of inputs pandas objects that are used internally including some bugfixes.
11
+* added quantile encoder and summary encoder
12
13
v2.3.0
14
======
15
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.3.0'
+__version__ = '2.4.0'
29
30
__author__ = "willmcginnis", "cmougan"
31
0 commit comments