Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Apr 23, 2024
1 parent 16f5b00 commit 32e8afb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/lint_python.yml
Expand Up @@ -9,9 +9,6 @@ jobs:
with:
python-version: 3.x
- run: pip install --upgrade pip wheel
- run: pip install --editable . || pip install .
- run: pytest .
- run: pytest --doctest-modules .
- run: pip install bandit "black[jupyter]" codespell flake8 flake8-2020
isort mypy pytest pyupgrade
- run: bandit --recursive --skip B101,B102,B110,B112,B307,B404,B603,B607 .
Expand All @@ -27,4 +24,6 @@ jobs:
- run: pip install --editable . || pip install .
- run: mkdir --parents --verbose .mypy_cache
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
- run: pytest .
- run: pytest --doctest-modules .
- run: shopt -s globstar && pyupgrade --py37-plus **/*.py || true
9 changes: 9 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,12 @@
v0.9.0
======
- Fractional stoichiometries are now officially supported in parser (e.g. Fe2O3.14)
- Complexes/crystal water should now be delimited with '..' (fix by @jeremyagray)
- Unicode printing of subscript decimal point should now work (gh-223, fix by @jeremyagray)
- Substance class now has a __hash__ function (fix by @DNIIBOY)
- Unit per100eV now has correct repr (fix by @daankoning)
- Passing results from balance_stoichiometry into Reaction now works (gh-218, thanks @montmorill)

v0.8.3
======
- Fixes for latest version of quantities.
Expand Down

0 comments on commit 32e8afb

Please sign in to comment.