File tree Expand file tree Collapse file tree 4 files changed +25
-5
lines changed
Expand file tree Collapse file tree 4 files changed +25
-5
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 66 given-names : Nikolas
77 orcid : " https://orcid.org/0000-0003-1562-0280"
88title : " fractopo"
9- version : " 0.5.0.post9.dev0+1299292 "
9+ version : " 0.5.1 "
1010date-released : " 2022-11-28"
1111keywords :
1212 - python
@@ -15,4 +15,5 @@ contact:
1515 - email : " nikolasovaskainen@gmail.com"
1616url : " https://github.com/nialov/fractopo"
1717repository-code : " https://github.com/nialov/fractopo"
18- doi : " 10.5281/zenodo.5517486"
18+ doi : " 10.5281/zenodo.5517486"
19+
Original file line number Diff line number Diff line change 1616from fractopo .analysis .network import Network # noqa: E402,C0413
1717from 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
2222logging .info (
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " fractopo"
3- version = " 0.5.0.post9.dev0+1299292 "
3+ version = " 0.5.1 "
44description = " Fracture Network Analysis"
55authors = [" nialov <nikolasovaskainen@gmail.com>" ]
66readme = " README.rst"
@@ -191,3 +191,4 @@ ignore_missing_imports = true
191191
192192
193193
194+
You can’t perform that action at this time.
0 commit comments