Skip to content

Commit 4b691f5

Browse files
committed
chore: release 0.38.0
1 parent 13114f7 commit 4b691f5

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11

22

3+
## v0.38.0 (2022-11-14)
4+
5+
### Fix
6+
7+
- **main**: correctly retrieve lazy value when generating the learning curve
8+
- **main**: make `main` executable
9+
- **main**: ensure that index columns are not included when saving data as CSV
10+
11+
### Refactor
12+
13+
- **datasets/bridging**: add logging for when loading is successful or fails
14+
- **main**: simplify purging experiment videos
15+
- **datasets/cache**: simplify `SliceableDatasetCache` interface
16+
- **datasets/sliceable**: allow caches to take responsibility over the decision from where to fetch data
17+
- **main**: remove unused parameter `buffer_size`
18+
- **management/allocators**: replace `default_table_allocator` with `JSONTableAllocator`
19+
- **io/json**: simplify encoding/decoding of `Pack`s
20+
- **main**: remove constant `SPLITS` and instead make it a default value to `GetImageDatasetParams`
21+
- **io/json**: simplify encoding/decoding of `frozendict`s
22+
23+
### Perf
24+
25+
- **main**: cache video information for faster subsequent iterations
26+
27+
### BREAKING CHANGE
28+
29+
- the protocol for encoding or decoding `Pack`s
30+
has changed.
31+
332
## v0.37.0 (2022-10-29)
433

534
### Perf

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "boiling-learning"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
description = "Deep learning models for phase-change quantification and classification."
55
authors = [
66
{name = "Ruan Comelli", email = "ruancomelli@gmail.com"}
@@ -148,7 +148,7 @@ plugins = [
148148
[tool.commitizen]
149149
tag_format = "v$major.$minor.$patch$prerelease"
150150
update_changelog_on_bump = true
151-
version = "0.37.0"
151+
version = "0.38.0"
152152
version_files = ["pyproject.toml:version"]
153153
bump_message = "chore: release $new_version"
154154

0 commit comments

Comments
 (0)