Skip to content

Commit

Permalink
Prepare for v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Apr 3, 2017
1 parent bbb10af commit 343b46c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v0.5.1
======
- Moved ReactionSystem to .reactionsystem, (import directly from chempy).
- Steady state analysis
- now in default_units: molar, milli-, micro- & nano-
- CSTR kinetics
- Minor fixes, new notebooks

v0.5.0
======
- ``.electrochemistry.nernst_formula`` - thanks to Adel Qalieh (@adelq)
Expand Down
2 changes: 1 addition & 1 deletion chempy/_release.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0.dev0+git"
__version__ = "0.6.0.dev0+git"
2 changes: 1 addition & 1 deletion chempy/chemistry.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ def unicode(self, substances, with_param=False, **kwargs):
unit_fmt=lambda dim: (
dim.unicode if sys.version_info[0] > 2
else dim.unicode.decode(encoding='utf-8')
), str_=str if sys.version_info[0] > 2 else unicode)
), str_=str if sys.version_info[0] > 2 else unicode) # noqa
return res

def html(self, substances, with_param=False, **kwargs):
Expand Down

0 comments on commit 343b46c

Please sign in to comment.