File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.12.1] - 2025-01-29
8
+ ### Changed
9
+ - Default of ` allow_recommending_already_recommended ` is changed back to ` False `
10
+ to avoid exploitation cycles ([ #468 ] ( https://github.com/emdgroup/baybe/issues/468 ) )
11
+
7
12
## [ 0.12.0] - 2025-01-28
8
13
### Breaking Changes
9
14
- Lookup callables for simulation are now expected to accept/return dataframes with
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ class Campaign(SerialMixin):
133
133
134
134
allow_recommending_already_recommended : bool | UnspecifiedType = field (
135
135
default = Factory (
136
- _make_allow_flag_default_factory (default = True ), takes_self = True
136
+ _make_allow_flag_default_factory (default = False ), takes_self = True
137
137
),
138
138
validator = _validate_allow_flag ,
139
139
kw_only = True ,
You can’t perform that action at this time.
0 commit comments