Skip to content

Commit 162477c

Browse files
committed
build: prepare for v0.9.0
1 parent 39aaef9 commit 162477c

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## v0.9.0 (2026-01-23)
4+
5+
Improved exporting of results from ``network`` cli interface and from
6+
``marimo`` apps and added support and CI for Python 3.13 and 3.14. However,
7+
support was removed for Python 3.9 and 3.10.
8+
9+
### 🚀 Features
10+
11+
- *(network)* Improve and unify network export function
12+
- *(cli,network)* [**breaking**] The command-line ``network`` command has been altered. Output path is now only given using ``--output-path`` flag.
13+
- *(general,write_geodataframe)* Export also as FileGeoDatabase
14+
- *(marimos)* Improve exports from marimo app
15+
16+
### 🐛 Bug Fixes
17+
18+
- *(general)* Specify TARGET_ARCGIS_VERSION
19+
20+
### 📚 Documentation
21+
22+
- Update api docs and config
23+
- *(fractopo_validation_1)* Fix new KB11_traces validation errors
24+
25+
### 🧪 Testing
26+
27+
- Update tests for new unified export function
28+
29+
Full set of changes:
30+
[`v0.8.0...v0.9.0`](https://github.com/nialov/fractopo/compare/v0.8.0...v0.9.0)
31+
332
## v0.8.0 (2025-03-24)
433

534
This release includes inclusion of

fractopo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
log = logging.getLogger(__name__)
1414

15-
__version__ = "0.8.0"
15+
__version__ = "0.9.0"
1616

1717

1818
log.info(

nix/package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ let
6161
src;
6262
self = buildPythonPackage {
6363
pname = "fractopo";
64-
version = "0.8.0";
64+
version = "0.9.0";
6565

6666
src = mkSrc baseFiles;
6767

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fractopo"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "Fracture Network Analysis"
55
authors = [{name= "nialov", email = "nikolasovaskainen@gmail.com"}]
66
readme = "README.rst"

0 commit comments

Comments
 (0)