Skip to content

Commit

Permalink
bump: version 0.9.2 → 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ruancomelli committed Jul 20, 2021
1 parent 969ec2d commit a77d3c4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## v0.9.3 (2021-07-20)

### Feat

- **scripts**: define script for loading cases

### Refactor

- pre-import common subpackages directly on the package's __init__ file

## v0.9.2 (2021-07-14)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.2
0.9.3
3 changes: 1 addition & 2 deletions boiling_learning/io/storage.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from importlib import import_module
from typing import Any, Dict, TypeVar
from typing import Any, Dict

from plum import Dispatcher

from boiling_learning.utils.table_dispatch import table_dispatch

_T = TypeVar('_T')
dispatch = Dispatcher()


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins = "numpy.typing.mypy_plugin"
[tool.commitizen]
tag_format = "v$major.$minor.$patch$prerelease"
update_changelog_on_bump = true
version = "0.9.2"
version = "0.9.3"
version_files = [
"VERSION",
]
Expand Down

0 comments on commit a77d3c4

Please sign in to comment.