Skip to content

Commit

Permalink
docs: update version to v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nialov committed May 9, 2023
1 parent 0c70af1 commit b419061
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 5 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Changelog

## v0.5.3 (2023-05-09)

### New Features

- A basic input geometry check is done before starting `tracevalidate` and
`network` command-line invocations as suggested in
<https://github.com/nialov/fractopo/issues/36>.

- `joblib` cache settings can be set from environment
variables.

### Fixes

- (branches_and_nodes): Fixed `angle_to_point` by setting distance
and similarity checks to more reasonable accuracy.

- (general): Now crs is added before merging geodataframes in
`dissolve_multi_part_traces`

- (length_distribution): Handle empty arrays in in `powerlaw.Fit`
invocations by returning `None` instead of a `Fit` instance.

- (analysis): Length plot ticks are set explicitly in `setup_ax_for_ld` to
avoid differences between Python package versions
(<https://github.com/nialov/fractopo/issues/25>).

- Z-coordinates are now *handled* across `fractopo` i.e. they do not raise
errors. However, they are not guaranteed to be kept in results such as
validated traces. Reported in
<https://github.com/nialov/fractopo/issues/21>.

- (analysis): Removed function signatures with mutable default arguments.

Full set of changes:
[`v0.5.2...v0.5.3`](https://github.com/nialov/fractopo/compare/v0.5.2...v0.5.3)

## v0.5.2 (2023-01-16)

### New Features
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors:
given-names: Nikolas
orcid: "https://orcid.org/0000-0003-1562-0280"
title: "fractopo"
version: "0.5.2"
date-released: "2023-01-16"
version: "0.5.3"
date-released: "2023-05-09"
keywords:
- python
- data
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ let

in buildPythonPackage {
pname = "fractopo";
version = "0.5.2";
version = "0.5.3";
src = let
# Filter from src paths with given suffixes (full name can be given as suffix)
excludeSuffixes = [
Expand Down
2 changes: 1 addition & 1 deletion fractopo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

log = logging.getLogger(__name__)

__version__ = "0.5.2"
__version__ = "0.5.3"


log.info(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fractopo"
version = "0.5.2"
version = "0.5.3"
description = "Fracture Network Analysis"
authors = ["nialov <[email protected]>"]
readme = "README.rst"
Expand Down

0 comments on commit b419061

Please sign in to comment.