diff --git a/CHANGELOG.md b/CHANGELOG.md index 10e7a2f..fb8e4f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,15 @@ # Changelog +## v1.0.1 2023-11-28 + +Minor internal improvements to the code base + ## v1.0.0 2023-11-28 -✨ Support for aiida-core >= 2.0.0 +⬆️ Support for aiida-core >= 2.0.0 - drop support for python<3.8 -- fix deprecation watnings +- fix deprecation warnings ♻️ Refactoring of the plugin - Removed the old Calculation interfaces and replaced them by a more flexible instances, either by passing a set of parameters that describe a single stage `LAMMPS` run (`LammpsBaseCalculation`) or by passing the input script directly (`LammpsRawCalculation`). diff --git a/aiida_lammps/__init__.py b/aiida_lammps/__init__.py index de8d292..1d65574 100644 --- a/aiida_lammps/__init__.py +++ b/aiida_lammps/__init__.py @@ -1,2 +1,2 @@ """AiiDA plugin for the LAMMPS code""" -__version__ = "1.0.0" +__version__ = "1.0.1"