Skip to content

Commit 95d1a12

Browse files
authored
Prepare changelog for 0.8.27 (#512)
1 parent 32d74fd commit 95d1a12

File tree

2 files changed

+25
-12
lines changed

2 files changed

+25
-12
lines changed

webknossos/Changelog.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/) `MAJOR.MIN
77
For upgrade instructions, please check the respective *Breaking Changes* sections.
88

99
## Unreleased
10-
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.8.25...HEAD)
10+
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.8.27...HEAD)
1111

1212
### Breaking Changes
1313

1414
### Added
1515

1616
### Changed
1717

18+
### Fixed
19+
20+
21+
## [0.8.27](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.8.27) - 2021-12-09
22+
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.8.25...v0.8.27)
23+
24+
1825
## [v0.8.25](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.8.25) - 2021-12-07
1926
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.8.24...v0.8.25)
2027

@@ -85,7 +92,7 @@ For upgrade instructions, please check the respective *Breaking Changes* section
8592

8693
### Breaking Changes
8794
- `View`s now always open the `wkw.Dataset` lazily. All explicit calls to `View.open()` and `View.close()` must be removed. [#448](https://github.com/scalableminds/webknossos-libs/pull/448)
88-
-
95+
-
8996
### Added
9097
- Added a new Annotation class which includes skeletons as well as volume-annotations. [#452](https://github.com/scalableminds/webknossos-libs/pull/452)
9198
- Added dataset down- and upload as well as annotation download, see the examples `learned_segmenter.py` and `upload_image_data.py`. [#452](https://github.com/scalableminds/webknossos-libs/pull/452)

wkcuber/Changelog.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/) `MAJOR.MIN
77
For upgrade instructions, please check the respective *Breaking Changes* sections.
88

99
## Unreleased
10-
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.8.23...HEAD)
10+
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.8.27...HEAD)
1111

12-
### Breaking Changes in Config & CLI
12+
### Breaking Changes
1313

1414
### Added
15-
- Added importable `cube_with_args` function to main module of wkcuber. [#507](https://github.com/scalableminds/webknossos-libs/pull/507)
1615

1716
### Changed
1817

1918
### Fixed
2019

2120

21+
## [0.8.27](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.8.27) - 2021-12-09
22+
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.8.25...v0.8.27)
23+
24+
### Added
25+
- Added importable `cube_with_args` function to main module of wkcuber. [#507](https://github.com/scalableminds/webknossos-libs/pull/507)
26+
27+
2228
## [v0.8.25](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.8.25) - 2021-12-07
2329
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.8.24...v0.8.25)
2430

@@ -129,7 +135,7 @@ For upgrade instructions, please check the respective *Breaking Changes* section
129135
### Added
130136

131137
### Changed
132-
- Avoid warnings for compressed/unaligned data, if the data is directly at the border of the bounding box. [#378](https://github.com/scalableminds/webknossos-cuber/pull/378)
138+
- Avoid warnings for compressed/unaligned data, if the data is directly at the border of the bounding box. [#378](https://github.com/scalableminds/webknossos-cuber/pull/378)
133139

134140
### Fixed
135141

@@ -251,13 +257,13 @@ For upgrade instructions, please check the respective *Breaking Changes* section
251257

252258
### Breaking Changes in Config & CLI
253259
- Some breaking changes in the dataset API: [#339](https://github.com/scalableminds/webknossos-cuber/pull/339)
254-
- The interfaces of the methods `Layer.add_mag` and `Layer.get_or_add_mag` have changed: the parameter `block_type` is now replaced with `compress`.
255-
- Previously `Layer.mags` was of type `Dict[str, MagView]`. This was now changed to `Dict[Mag, MagView]`.
260+
- The interfaces of the methods `Layer.add_mag` and `Layer.get_or_add_mag` have changed: the parameter `block_type` is now replaced with `compress`.
261+
- Previously `Layer.mags` was of type `Dict[str, MagView]`. This was now changed to `Dict[Mag, MagView]`.
256262
- Renamed `LayerTypes` to `LayerCategories`.
257263

258264
### Added
259265
- Added multiple small features: [#339](https://github.com/scalableminds/webknossos-cuber/pull/339)
260-
- Names of datasets can now be passed optionally when creating a dataset.
266+
- Names of datasets can now be passed optionally when creating a dataset.
261267
- The `Layer` does now expose the `largest_segment_id`.
262268
- Add methods to get category specific layers for a given dataset.
263269

@@ -269,7 +275,7 @@ For upgrade instructions, please check the respective *Breaking Changes* section
269275
- Tiff-support is now dropped (`TiffDataset` and `TiledTiffDataset` are now removed (alongside their corresponding `Layer` and `MagDataset` classes))
270276
- Module names are now lowercase (previously: `wkcuber.api.Dataset`, `wkcuber.api.Layer`, `wkcuber.api.View`, `wkcuber.api.properties.DatasetProperties`, `wkcuber.api.properties.LayerProperties`, `wkcuber.api.properties.ResolutionProperties`)
271277
- Some classes are renamed (`WKDataset` -> `Dataset`, `WKMagDataset` -> `MagView`)
272-
- The "Layer types" (previously `Layer.COLOR` and `Layer.SEGMENTATION`) are now moved into their own class `wkcuber.api.layer.LayerTypes`.
278+
- The "Layer types" (previously `Layer.COLOR` and `Layer.SEGMENTATION`) are now moved into their own class `wkcuber.api.layer.LayerTypes`.
273279
- `View` (in particular `get_view()`) is refactored to be safer (this is also a breaking change).
274280
- The attribute `path_to_mag_dataset` was renamed to `path_to_mag_view`
275281
- Changes for `View.get_view()` (these changes also apply for `MagView.get_view()` (previously `MagDataset.get_view()`)):
@@ -278,7 +284,7 @@ For upgrade instructions, please check the respective *Breaking Changes* section
278284
- The order of the parameters `size` and `offset` was changed, so that `offset` is now the first parameter.
279285
- The shorthand `wkcuber.api.dataset.Dataset.get_view()` was removed.
280286
- The flag `--write_tiff` of `convert_nifti` was removed.
281-
287+
282288
### Added
283289

284290
### Changed
@@ -367,4 +373,4 @@ For upgrade instructions, please check the respective *Breaking Changes* section
367373
## [0.6.1](https://github.com/scalableminds/webknossos-cuber/releases/tag/v0.6.1) - 2021-04-29
368374
[Commits](https://github.com/scalableminds/webknossos-cuber/compare/v0.6.0...v0.6.1)
369375

370-
This is the latest release at the time of creating this changelog.
376+
This is the latest release at the time of creating this changelog.

0 commit comments

Comments
 (0)