Skip to content

Commit

Permalink
docs: update version and changelog to v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nialov committed Oct 24, 2022
1 parent 6b052c5 commit 2515c9c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## v0.4.1 (2022-10-24)

### New Features

- (cli): Save additional json data to output directory
when running `fractopo network` for possible post-processing
needs.

### Fixes

- (network): General fixes to `fractopo network` command-line
entrypoint.

- Sort keys in any json output.

- (network): Allow `MultiLineString` geometries when possible.
Topologically non-valid data should be analyzeable with the
best effort possible.

- (branches_and_nodes): Fixes small logging bug.

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

## v0.4.0 (2022-06-17)

### New Features
Expand Down
6 changes: 4 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors:
given-names: Nikolas
orcid: "https://orcid.org/0000-0003-1562-0280"
title: "fractopo"
version: "0.4.0.post48.dev0+444edb3"
version: "0.4.1"
date-released: "2022-10-24"
keywords:
- python
Expand All @@ -15,4 +15,6 @@ contact:
- email: "[email protected]"
url: "https://github.com/nialov/fractopo"
repository-code: "https://github.com/nialov/fractopo"
doi: "10.5281/zenodo.5517486"
doi: "10.5281/zenodo.5517486"


2 changes: 1 addition & 1 deletion fractopo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from fractopo.analysis.network import Network # noqa: E402
from fractopo.tval.trace_validation import Validation # noqa: E402

__version__ = "0.4.0.post48.dev0+444edb3"
__version__ = "0.4.1"


logging.info(
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fractopo"
version = "0.4.0.post48.dev0+444edb3"
version = "0.4.1"
description = "Fracture Network Analysis"
authors = ["nialov <[email protected]>"]
readme = "README.rst"
Expand Down Expand Up @@ -187,3 +187,5 @@ warn_unused_configs = true
ignore_missing_imports = true




0 comments on commit 2515c9c

Please sign in to comment.