diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 29a02de9..3df8c762 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,9 +1,29 @@ Change Log ========== -v2.3.6 +v2.3.7 ------ +* Added symprec functionality to load_phonon in cli/phonon_bandplot.py by @badw in https://github.com/SMTG-Bham/sumo/pull/207 +* Set band-edge marker size in style file by @ajjackson in https://github.com/SMTG-Bham/sumo/pull/193 +* Fix failing tests and migrate to importlib by @oashour in https://github.com/SMTG-Bham/sumo/pull/216 +* Update README.rst by @alexsquires in https://github.com/SMTG-Bham/sumo/pull/224 +* Add support for band structure titles by @oashour in https://github.com/SMTG-Bham/sumo/pull/215 +* Add ``**kwargs`` to ``draw_themed_line`` by @kavanase in https://github.com/SMTG-Bham/sumo/pull/212 +* Kpoint degeneracy by @kbspooner in https://github.com/SMTG-Bham/sumo/pull/213 + +## New Contributors + +* @badw made their first contribution in https://github.com/SMTG-Bham/sumo/pull/207 +* @oashour made their first contribution in https://github.com/SMTG-Bham/sumo/pull/216 +* @alexsquires made their first contribution in https://github.com/SMTG-Bham/sumo/pull/224 +* @kbspooner made their first contribution in https://github.com/SMTG-Bham/sumo/pull/213 + +**Full Changelog**: https://github.com/SMTG-Bham/sumo/compare/v2.3.6...v2.3.7 + + +v2.3.6 +------ Bugfixes: diff --git a/sumo/__init__.py b/sumo/__init__.py index cf6465a5..f4ff44c5 100644 --- a/sumo/__init__.py +++ b/sumo/__init__.py @@ -5,4 +5,4 @@ Sumo is a set of scripts and an API for dealing with VASP output files. """ -__version__ = "2.3.6" +__version__ = "2.3.7"