Skip to content

Commit c398423

Browse files
committed
move and update changelog
1 parent d377bf0 commit c398423

File tree

2 files changed

+108
-102
lines changed

2 files changed

+108
-102
lines changed

README.md

Lines changed: 1 addition & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -364,105 +364,4 @@ may be controlled with the `LOGURU_LEVEL` environment variable.
364364

365365
## Changelog
366366

367-
### 0.9.3
368-
369-
- bump bioimageio.spec library version to 0.5.5.5
370-
- more robust test model reporting
371-
- improved user input axis intepretation
372-
- fixed conda subprocess calls
373-
374-
### 0.9.2
375-
376-
- fix model inference tolerance reporting
377-
378-
### 0.9.1
379-
380-
- fixes:
381-
- CLI
382-
- improved handling of summary argument to not create a path with brackets when given a list of paths.
383-
- improved backward compatibility when runnig tests for models specifying an older bioimageio.core version in their environment.
384-
This is relevant when using `runtime_env="as-described"`.
385-
It works by simply trying option `--summary` (new option name) and `--summary-path` (outdated option name)
386-
387-
### 0.9.0
388-
389-
- update to [bioimageio.spec 0.5.4.3](https://github.com/bioimage-io/spec-bioimage-io/blob/main/changelog.md#bioimageiospec-0543)
390-
391-
### 0.8.0
392-
393-
- breaking: removed `decimals` argument from bioimageio CLI and `bioimageio.core.commands.test()`
394-
- New feature: `bioimageio.core.test_description` accepts **runtime_env** and **run_command** to test a resource
395-
using the conda environment described by that resource (or another specified conda env)
396-
- new CLI command: `bioimageio add-weights` (and utility function: bioimageio.core.add_weights)
397-
- removed `bioimageio.core.proc_ops.get_proc_class` in favor of `bioimageio.core.proc_ops.get_proc`
398-
- new CLI command: `bioimageio update-format`
399-
- new CLI command: `bioimageio update-hashes`
400-
401-
### 0.7.0
402-
403-
- breaking:
404-
- bioimageio CLI now has implicit boolean flags
405-
- non-breaking:
406-
- use new `ValidationDetail.recommended_env` in `ValidationSummary`
407-
- improve `get_io_sample_block_metas()`
408-
- now works for sufficiently large, but not exactly shaped inputs
409-
- update to support `zipfile.ZipFile` object with bioimageio.spec==0.5.3.5
410-
- add io helpers `resolve` and `resolve_and_extract`
411-
- added `enable_determinism` function and **determinism** input argument for testing with seeded
412-
random generators and optionally (determinsim=="full") instructing DL frameworks to use
413-
deterministic algorithms.
414-
415-
### 0.6.10
416-
417-
- fix #423
418-
419-
### 0.6.9
420-
421-
- improve bioimageio command line interface (details in #157)
422-
- add `predict` command
423-
- package command input `path` is now required
424-
425-
### 0.6.8
426-
427-
- testing model inference will now check all weight formats
428-
(previously only the first one for which model adapter creation succeeded had been checked)
429-
- fix predict with blocking (Thanks @thodkatz)
430-
431-
### 0.6.7
432-
433-
- `predict()` argument `inputs` may be sample
434-
435-
### 0.6.6
436-
437-
- add aliases to match previous API more closely
438-
439-
### 0.6.5
440-
441-
- improve adapter error messages
442-
443-
### 0.6.4
444-
445-
- add `bioimageio validate-format` command
446-
- improve error messages and display of command results
447-
448-
### 0.6.3
449-
450-
- Fix [#386](https://github.com/bioimage-io/core-bioimage-io-python/issues/386)
451-
- (in model inference testing) stop assuming model inputs are tileable
452-
453-
### 0.6.2
454-
455-
- Fix [#384](https://github.com/bioimage-io/core-bioimage-io-python/issues/384)
456-
457-
### 0.6.1
458-
459-
- Fix [#378](https://github.com/bioimage-io/core-bioimage-io-python/pull/378) (with [#379](https://github.com/bioimage-io/core-bioimage-io-python/pull/379))*
460-
461-
### 0.6.0
462-
463-
- add compatibility with new bioimageio.spec 0.5 (0.5.2post1)
464-
- improve interfaces
465-
466-
### 0.5.10
467-
468-
- [Fix critical bug in predict with tiling](https://github.com/bioimage-io/core-bioimage-io-python/pull/359)
367+
See [changelog.md](changelog.md)

changelog.md

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
### 0.9.4 (not yet released)
2+
3+
- Replace `conda activate <env name>` with `conda run -n <env name> python --version` when checking if a conda environment exists
4+
(This is closer to the actual `conda run` command we need and avoids requests by conda to rerun `conda init` (in CI).)
5+
6+
### 0.9.3
7+
8+
- bump bioimageio.spec library version to 0.5.5.5
9+
- more robust test model reporting
10+
- improved user input axis intepretation
11+
- fixed conda subprocess calls
12+
13+
### 0.9.2
14+
15+
- fix model inference tolerance reporting
16+
17+
### 0.9.1
18+
19+
- fixes:
20+
- CLI
21+
- improved handling of summary argument to not create a path with brackets when given a list of paths.
22+
- improved backward compatibility when runnig tests for models specifying an older bioimageio.core version in their environment.
23+
This is relevant when using `runtime_env="as-described"`.
24+
It works by simply trying option `--summary` (new option name) and `--summary-path` (outdated option name)
25+
26+
### 0.9.0
27+
28+
- update to [bioimageio.spec 0.5.4.3](https://github.com/bioimage-io/spec-bioimage-io/blob/main/changelog.md#bioimageiospec-0543)
29+
30+
### 0.8.0
31+
32+
- breaking: removed `decimals` argument from bioimageio CLI and `bioimageio.core.commands.test()`
33+
- New feature: `bioimageio.core.test_description` accepts **runtime_env** and **run_command** to test a resource
34+
using the conda environment described by that resource (or another specified conda env)
35+
- new CLI command: `bioimageio add-weights` (and utility function: bioimageio.core.add_weights)
36+
- removed `bioimageio.core.proc_ops.get_proc_class` in favor of `bioimageio.core.proc_ops.get_proc`
37+
- new CLI command: `bioimageio update-format`
38+
- new CLI command: `bioimageio update-hashes`
39+
40+
### 0.7.0
41+
42+
- breaking:
43+
- bioimageio CLI now has implicit boolean flags
44+
- non-breaking:
45+
- use new `ValidationDetail.recommended_env` in `ValidationSummary`
46+
- improve `get_io_sample_block_metas()`
47+
- now works for sufficiently large, but not exactly shaped inputs
48+
- update to support `zipfile.ZipFile` object with bioimageio.spec==0.5.3.5
49+
- add io helpers `resolve` and `resolve_and_extract`
50+
- added `enable_determinism` function and **determinism** input argument for testing with seeded
51+
random generators and optionally (determinsim=="full") instructing DL frameworks to use
52+
deterministic algorithms.
53+
54+
### 0.6.10
55+
56+
- fix #423
57+
58+
### 0.6.9
59+
60+
- improve bioimageio command line interface (details in #157)
61+
- add `predict` command
62+
- package command input `path` is now required
63+
64+
### 0.6.8
65+
66+
- testing model inference will now check all weight formats
67+
(previously only the first one for which model adapter creation succeeded had been checked)
68+
- fix predict with blocking (Thanks @thodkatz)
69+
70+
### 0.6.7
71+
72+
- `predict()` argument `inputs` may be sample
73+
74+
### 0.6.6
75+
76+
- add aliases to match previous API more closely
77+
78+
### 0.6.5
79+
80+
- improve adapter error messages
81+
82+
### 0.6.4
83+
84+
- add `bioimageio validate-format` command
85+
- improve error messages and display of command results
86+
87+
### 0.6.3
88+
89+
- Fix [#386](https://github.com/bioimage-io/core-bioimage-io-python/issues/386)
90+
- (in model inference testing) stop assuming model inputs are tileable
91+
92+
### 0.6.2
93+
94+
- Fix [#384](https://github.com/bioimage-io/core-bioimage-io-python/issues/384)
95+
96+
### 0.6.1
97+
98+
- Fix [#378](https://github.com/bioimage-io/core-bioimage-io-python/pull/378) (with [#379](https://github.com/bioimage-io/core-bioimage-io-python/pull/379))*
99+
100+
### 0.6.0
101+
102+
- add compatibility with new bioimageio.spec 0.5 (0.5.2post1)
103+
- improve interfaces
104+
105+
### 0.5.10
106+
107+
- [Fix critical bug in predict with tiling](https://github.com/bioimage-io/core-bioimage-io-python/pull/359)

0 commit comments

Comments
 (0)