Skip to content

Commit a9a61cb

Browse files
committed
docs: update version and changelog for v0.5.1
1 parent 573e7c9 commit a9a61cb

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
# Changelog
22

3+
## v0.5.1 (2022-11-28)
4+
5+
### Fixes
6+
7+
- (analysis): Fixed XYI and branch ternary plot sample count to only report the
8+
valid node and branch counts.
9+
10+
- (analysis): Fixed the cut-off vertical line to correspond to the
11+
actual cut-off rather than the lowest remaining length.
12+
13+
- (general): Allow MultiLineStrings in `determine_valid_intersection_points`.
14+
15+
- (analysis): Made sure the order of lengths used in plotting the fitted y values
16+
is correct in multi-scale length plots.
17+
18+
Full set of changes:
19+
[`v0.5.0...v0.5.1`](https://github.com/nialov/fractopo/compare/v0.5.0...v0.5.1)
20+
321
## v0.5.0 (2022-11-04)
422

523
### New Features
624

7-
- Implemeted caching and parallel execution of expensive functions
25+
- Implemented caching and parallel execution of expensive functions
826
in `Network` analysis. This should speed up (repeated) runs on the
927
same datasets. This implementation is based on `joblib` which provided
1028
the functionality without issue.

CITATION.cff

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors:
66
given-names: Nikolas
77
orcid: "https://orcid.org/0000-0003-1562-0280"
88
title: "fractopo"
9-
version: "0.5.0.post9.dev0+1299292"
9+
version: "0.5.1"
1010
date-released: "2022-11-28"
1111
keywords:
1212
- python
@@ -15,4 +15,5 @@ contact:
1515
- email: "nikolasovaskainen@gmail.com"
1616
url: "https://github.com/nialov/fractopo"
1717
repository-code: "https://github.com/nialov/fractopo"
18-
doi: "10.5281/zenodo.5517486"
18+
doi: "10.5281/zenodo.5517486"
19+

fractopo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from fractopo.analysis.network import Network # noqa: E402,C0413
1717
from fractopo.tval.trace_validation import Validation # noqa: E402,C0413
1818

19-
__version__ = "0.5.0.post9.dev0+1299292"
19+
__version__ = "0.5.1"
2020

2121

2222
logging.info(

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fractopo"
3-
version = "0.5.0.post9.dev0+1299292"
3+
version = "0.5.1"
44
description = "Fracture Network Analysis"
55
authors = ["nialov <nikolasovaskainen@gmail.com>"]
66
readme = "README.rst"
@@ -191,3 +191,4 @@ ignore_missing_imports = true
191191

192192

193193

194+

0 commit comments

Comments
 (0)