Skip to content

Commit

Permalink
final modification of changelog and versions in packages
Browse files Browse the repository at this point in the history
  • Loading branch information
BDonnot committed Aug 11, 2021
1 parent e3b8696 commit c34d639
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ Change Log
- improve speed
- improve documentation
- easier building (get rid of the "make" part)
- distribute pypi package
- code helm powerflow method
- interface with gridpack (to enforce q limits for example)
- have a solver with "NICSLU" (https://github.com/chenxm1986/nicslu) if available on the platform
- maybe have a look at suitesparse "sliplu" tools ?

[0.5.3] 2021-xx-yy
[0.5.3] 2021-08-11
-------------------
- [FIXED] minor issues in the benchmark (some time measurments were wrong)
- [ADDED] lightsim2grid package now can be distributed on pypi
- [ADDED] compilation of SuiteSparse using cmake
- [ADDED] compatibility with the KLU linear solver on windows based systems.
- [IMPROVED] trying to make the package available on pypi

[0.5.2] 2021-07-26
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Benjamin DONNOT'

# The full version, including alpha/beta/rc tags
release = '0.5.2'
release = '0.5.3'
version = '0.5'

# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion lightsim2grid/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.5.3.rc1"
__version__ = "0.5.3"

__all__ = ["newtonpf", "SolverType", "solver"]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import warnings
from pybind11.setup_helpers import Pybind11Extension, build_ext

__version__ = "0.5.3.rc2"
__version__ = "0.5.3"
KLU_SOLVER_AVAILABLE = False

# Try to link against SuiteSparse (if available)
Expand Down

0 comments on commit c34d639

Please sign in to comment.