Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Chico committed Apr 26, 2024
1 parent 182a0eb commit 0e87724
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v1.0.2 2024-04-26

- Fixing an issue in which some LAMMPS vectorial properties were not working properly.
- Changed how the formatting of the dump command is done to prevent issues from vectorial quantities with undetermined size.
- Added the capability to override the dimension and boundary commands in LAMMPS.
- Pinning the version of jsonschema to avoid issues with python>=3.9.

## v1.0.1 2023-11-28

Minor internal improvements to the code base
Expand Down
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ docs = [
"furo",
]

pre-commit = ['pre-commit~=2.17']

[project.entry-points."aiida.calculations"]
"lammps.base" = "aiida_lammps.calculations.base:LammpsBaseCalculation"
"lammps.raw" = "aiida_lammps.calculations.raw:LammpsRawCalculation"
Expand Down Expand Up @@ -116,6 +118,13 @@ commands =
rm -r {toxworkdir}/.aiida
extras = tests
[testenv:pre-commit]
allowlist_externals = bash
commands = bash -ec 'pre-commit run --all-files || ( git diff; git status; exit 1; )'
extras =
pre-commit
tests
[testenv:docs-{clean,update}]
extras = docs
description =
Expand Down

0 comments on commit 0e87724

Please sign in to comment.