Skip to content

Commit e487f57

Browse files
committed
build: prepare for v0.9.1 release
1 parent 662ead2 commit e487f57

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

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

3+
## v0.9.1 (2026-01-27)
4+
5+
Added back support for Python 3.10.
6+
7+
Full set of changes:
8+
[`v0.9.0...v0.9.1`](https://github.com/nialov/fractopo/compare/v0.9.0...v0.9.1)
9+
310
## v0.9.0 (2026-01-23)
411

512
Improved exporting of results from ``network`` cli interface and from

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.9.0"
15+
__version__ = "0.9.1"
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.9.0";
64+
inherit ((builtins.fromTOML (builtins.readFile ../pyproject.toml)).project) version;
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.9.0"
3+
version = "0.9.1"
44
description = "Fracture Network Analysis"
55
authors = [{name= "nialov", email = "nikolasovaskainen@gmail.com"}]
66
readme = "README.rst"

0 commit comments

Comments
 (0)