File tree 4 files changed +18
-4
lines changed
4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
1
# History
2
2
3
+ ## 1.2.0 (2025-02-10)
4
+
5
+ ---
6
+
7
+ - Add paper to README
8
+ - Exit solve after iter_limit reached (wasn't enforced before) by @amirDahari1 in #96
9
+ - Change error for negative flux (changed stop criteria) resolves #94 by @amirDahari1 in #95
10
+ - Calc vertical flux function (returns the flux field) by @amirDahari1 in #98
11
+ - Deleted unused variables by @amirDahari1 in #103
12
+ - Use inheritance for check_vertical_flux (cleanup) by @daubners in #104
13
+ - Add AnisotropySolver (if the z-spacing is different than x- or y-spacing) by @daubners in #105
14
+ - New surface areas (face counting, gradient and marching cubes) by @daubners in #107
15
+ - Through connectivity (checks if there's phase connectivity) by @daubners in #106
16
+
3
17
## 1.1.0 (2023-07-24)
4
18
5
19
---
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.1 .0
2
+ current_version = 1.2 .0
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change 59
59
test_suite = 'tests' ,
60
60
tests_require = test_requirements ,
61
61
url = 'https://github.com/tldr-group/taufactor' ,
62
- version = '1.1 .0' ,
62
+ version = '1.2 .0' ,
63
63
zip_safe = False ,
64
64
)
Original file line number Diff line number Diff line change 2
2
3
3
__author__ = """Isaac Squires"""
4
4
5
- __version__ = '1.1 .0'
5
+ __version__ = '1.2 .0'
6
6
7
- from .taufactor import *
7
+ from .taufactor import *
You can’t perform that action at this time.
0 commit comments