diff --git a/docs/CHANGES.md b/docs/CHANGES.md index d97ed7c644a..94dfea8127b 100644 --- a/docs/CHANGES.md +++ b/docs/CHANGES.md @@ -6,6 +6,27 @@ nav_order: 4 # Changelog +## v2024.6.4 + +### 🐛 Bug Fixes + +* Run CI with two different `uv` resolution strategies: `highest` and `lowest-direct` by @janosh in https://github.com/materialsproject/pymatgen/pull/3852 +* Fix filter condition for warn msg of unphysical site occupancy in `io.cif` by @DanielYang59 in https://github.com/materialsproject/pymatgen/pull/3853 + +### 🛠 Enhancements + +* Add new `.pmgrc.yaml` setting `PMG_VASP_PSP_SUB_DIRS: dict[str, str]` by @janosh in https://github.com/materialsproject/pymatgen/pull/3858 + +### 📖 Documentation + +* Clarify argument `shift` for `SlabGenerator.get_slab` by @DanielYang59 in https://github.com/materialsproject/pymatgen/pull/3748 + +### 🚧 CI + +* Add CI run without `'optional'` deps installed by @janosh in https://github.com/materialsproject/pymatgen/pull/3857 + +**Full Changelog**: https://github.com/materialsproject/pymatgen/compare/v2024.5.31...v2024.6.4 + ## 2024.5.31 ### 🐛 Bug Fixes diff --git a/setup.py b/setup.py index 60ba6af4858..69f2166df92 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name="pymatgen", packages=find_namespace_packages(include=["pymatgen.*", "pymatgen.**.*"]), - version="2024.5.31", + version="2024.6.4", python_requires=">=3.9", install_requires=[ "matplotlib>=3.8",