Skip to content

Commit

Permalink
Move to v0.2.0.dev after patch from v0.1.2, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
c-randall committed Dec 26, 2024
1 parent 60e1eb2 commit 7d4553d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Added Coulombic efficiency (`ce`) as a parameter option ([#4](https://github.com/NREL/thevenin/pull/4))

### Optimizations
- Bounded exponential input to avoid overflow warnings inside the sigmoid function of `loadfns.Ramp2Constant` ([#6](https://github.com/NREL/thevenin/pull/6))

### Bug Fixes
- `*Solution.plot()` now has a `show_plot` option to register `plt.show()` and block at the end of a program ([#5](https://github.com/NREL/thevenin/pull/5)). This keeps figures from auto-closing at the end of scripts run in non-interactive environments. Interactive environments (IPython, Jupyter Notebook) are not affected. When set to `False`, users running in non-interactive environments must manually call `plt.show()`. The default is `True`.
Expand Down
2 changes: 1 addition & 1 deletion src/thevenin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from . import loadfns
from . import plotutils

__version__ = '0.1.2'
__version__ = '0.2.0.dev'

__all__ = [
'IDASolver',
Expand Down

0 comments on commit 7d4553d

Please sign in to comment.