Skip to content

Commit

Permalink
bump: version 1.10.1 → 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 29, 2024
1 parent 74993c9 commit e58ebcd
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
## 1.11.0 (2024-02-29)

### Feat

- **CVEvaluator**: Add feature for post_split and post_processing (#260)
- **sklearn**: `X_test`, `y_test` to CVEvaluator (#258)
- CVEarlyStopping (#254)
- **sklearn**: CVEvaluator allows `configure` and `build` params (#250)
- **sklearn**: Provide a standard CVEvaluator (#244)

### Fix

- **trial**: Don't record metric values for deserialized NaN's or None (#263)
- **pipeline**: Ensure optimizer is updated with report (#261)
- **scheduling**: Safe termination of processes, avoiding lifetime race condition (#256)
- **metalearning**: Portfolio Check for Dataframe as Input (#253)
- **CVEvaluator**: `clone` the estimator before use (#249)
- **Node**: Ensure that parent name does not conflict with children (#248)
- **CVEvaluator**: When on_error="raise", inform of which trial failed (#247)
- **Trial**: Give trials a created_at stamp (#246)

### Refactor

- **pipeline**: `optimize` now requires one of `timeout` or (#252)
- **Metric, Trial**: Cleanup of metrics and `Trial` (#242)

## 1.10.1 (2024-01-28)

### Fix
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "amltk"
version = "1.10.1"
version = "1.11.0"
dependencies = [
"typing_extensions", # Better typing
"more_itertools", # Better iteration
Expand Down Expand Up @@ -98,7 +98,7 @@ exclude_lines = [

[tool.commitizen]
name = "cz_conventional_commits"
version = "1.10.1"
version = "1.11.0"
update_changelog_on_bump = true
version_files = ["pyproject.toml:version", "src/amltk/__version__.py"]
changelog_start_rev = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/amltk/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

version = "1.10.1"
version = "1.11.0"

0 comments on commit e58ebcd

Please sign in to comment.