Skip to content

Commit

Permalink
bump: version 1.2.4 → 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 5, 2023
1 parent cb07884 commit e99ec2f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 1.3.0 (2023-12-05)

### Feat

- **History**: Default to normalizing time of history output

### Fix

- Provide more information if `built_item` fails (#187)
- **_doc**: Use `isinstance` on types
- **Optimizers**: Default to optimizer name #174

### Refactor

- **History**: History provides mutator methods
- Move `StoredValue` to own file in `.store`

## 1.2.4 (2023-11-25)

### 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.2.4"
version = "1.3.0"
dependencies = [
"typing_extensions", # Better typing
"more_itertools", # Better iteration
Expand Down Expand Up @@ -97,7 +97,7 @@ exclude_lines = [

[tool.commitizen]
name = "cz_conventional_commits"
version = "1.2.4"
version = "1.3.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.2.4"
version = "1.3.0"

0 comments on commit e99ec2f

Please sign in to comment.