Skip to content

Commit

Permalink
Bump version number. (#92)
Browse files Browse the repository at this point in the history
Updating the Changelog.

Removing the documentation under development banner.

Co-authored-by: Jonathan Chico <jonathan.chico@sandvik.com>
  • Loading branch information
JPchico and Jonathan Chico authored Nov 28, 2023
1 parent 47b1a4d commit 2e3bfce
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Changelog

## v1.0.0 2023-11-28

✨ Support for aiida-core >= 2.0.0

- drop support for python<3.8
- fix deprecation watnings

♻️ 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`).
- Removed the old potential dataclasses, changed them by the `LammpsPotential` class where a potential file can be passed and tagged with a set of attributes to improve qurying.
- Improved the parsing to better handle errors, custom global and site dependent computes.
- Documentation style chaned to MysT
- Coding style changed to black.


✨ Added `LammpsRawCalculation`
This is a `CalcJob` that can handle calculations in which the `LAMMPS` input script and necessary files are explicitly given.

✨ Added `LammpsBaseCalculation`
This is a `CalcJob` that takes a set of parameters and constructs the `LAMMPS` input file for a single stage calculation.

✨ Added `LammpsBaseWorkChain`
A `WorkChain` wrapper for the `LammpsBaseCalculation` to harness the `BaseRestartWorkchain` from `aiida-core` and allow error correction and automatic restarting of the calculation.

✨ Added `LammpsMDWorkChain`
A `WorkChain` that deals specifically with MD runs in `LAMMPS`.

✨ Added `LammpsRelaxWorkChain`
A `WOrkChain` that deals with structural optimization via the `minimize` method in `LAMMPS`.


## v0.8.0 2020-09-29

✨ Support for aiida-core >= 1.4.0
Expand Down
2 changes: 1 addition & 1 deletion aiida_lammps/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""AiiDA plugin for the LAMMPS code"""
__version__ = "0.8.0"
__version__ = "1.0.0"
1 change: 0 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@
html_theme = "sphinx_book_theme" # pylint: disable=invalid-name
html_title = f"v{__version__}" # pylint: disable=invalid-name
html_theme_options = {
"announcement": "This documentation is in development!",
"repository_url": "https://github.com/aiidaplugins/aiida-lammps",
"github_url": "https://github.com/aiidaplugins/aiida-lammps",
"use_edit_page_button": True,
Expand Down

0 comments on commit 2e3bfce

Please sign in to comment.