Skip to content

Commit 212b468

Browse files
authored
Merge pull request #109 from tldr-group/amirDahari1-patch-1
update version 1.2.0
2 parents bf5851e + d4f65e1 commit 212b468

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

HISTORY.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# History
22

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+
317
## 1.1.0 (2023-07-24)
418

519
---

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.0
2+
current_version = 1.2.0
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@
5959
test_suite='tests',
6060
tests_require=test_requirements,
6161
url='https://github.com/tldr-group/taufactor',
62-
version='1.1.0',
62+
version='1.2.0',
6363
zip_safe=False,
6464
)

taufactor/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
__author__ = """Isaac Squires"""
44
__email__ = '[email protected]'
5-
__version__ = '1.1.0'
5+
__version__ = '1.2.0'
66

7-
from .taufactor import *
7+
from .taufactor import *

0 commit comments

Comments
 (0)