Skip to content

Commit

Permalink
Bump version to v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasteuwen committed Aug 1, 2024
1 parent 1b9a2fc commit 8996349
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ authors:
given-names: "Eric"
orchid: "https://orcid.org/0000-0002-3375-6248"
title: "DLUP: Deep Learning Utilities for Pathology"
version: 0.6.0
date-released: 2024-07-26
version: 0.6.1
date-released: 2024-08-01
url: "https://github.com/nki-ai/dlup"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ If you use DLUP in your research, please use the following BiBTeX entry:
```
@software{dlup,
author = {Teuwen, J., Romor, L., Pai, A., Schirris, Y., Marcus, E.},
month = {7},
month = {8},
title = {{DLUP: Deep Learning Utilities for Pathology}},
url = {https://github.com/NKI-AI/dlup},
version = {0.6.0},
version = {0.6.1},
year = {2024}
}
```

or the following plain bibliography:

```
Teuwen, J., Romor, L., Pai, A., Schirris, Y., Marcus E. (2024). DLUP: Deep Learning Utilities for Pathology (Version 0.6.0) [Computer software]. https://github.com/NKI-AI/dlup
Teuwen, J., Romor, L., Pai, A., Schirris, Y., Marcus E. (2024). DLUP: Deep Learning Utilities for Pathology (Version 0.6.1) [Computer software]. https://github.com/NKI-AI/dlup
```
2 changes: 1 addition & 1 deletion dlup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@

__author__ = """dlup contributors"""
__email__ = "[email protected]"
__version__ = "0.6.0"
__version__ = "0.6.1"

__all__ = ("SlideImage", "WsiAnnotations", "AnnotationType", "RegionView", "UnsupportedSlideError", "BoundaryMode")
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.6.1
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = prod
first_value = dev
values =
values =
dev
prod

Expand Down

0 comments on commit 8996349

Please sign in to comment.