Skip to content

Commit fa7be03

Browse files
Bumping to version 0.1.6 (#140)
1 parent c43c662 commit fa7be03

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [v0.1.6](https://github.com/danieldeutsch/repro/releases/tag/v0.1.6) - 2022-07-31
910
## Added
1011
- Added the [`ParallelModel`](https://repro.readthedocs.io/en/latest/api/repro.models.model.html#repro.models.model.ParallelModel) class as an easy abstraction over the `joblib` library for parallel computation.
1112
- Added an [`aggregate_parallel_metrics`](https://repro.readthedocs.io/en/latest/api/repro.common.util.html#repro.common.util.aggregate_parallel_metrics) function to make using metrics in parallel easier.
@@ -14,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1415
## Changed
1516
- Split `Prism` into reference-based `Prism` and reference-free `PrismSrc`.
1617
They now support multi-reference and multi-source via averaging over the references/sources.
18+
- Relaxed the dependency on `pytest` so it does not require a specific version
1719

1820
## [v0.1.5](https://github.com/danieldeutsch/repro/releases/tag/v0.1.5) - 2022-03-21
1921
## Added

repro/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_MAJOR = "0"
22
_MINOR = "1"
3-
_PATCH = "5"
3+
_PATCH = "6"
44

55
VERSION = f"{_MAJOR}.{_MINOR}.{_PATCH}"

0 commit comments

Comments
 (0)