File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v1.0.2 2024-04-26
4
+
5
+ - Fixing an issue in which some LAMMPS vectorial properties were not working properly.
6
+ - Changed how the formatting of the dump command is done to prevent issues from vectorial quantities with undetermined size.
7
+ - Added the capability to override the dimension and boundary commands in LAMMPS.
8
+ - Pinning the version of jsonschema to avoid issues with python>=3.9.
9
+
3
10
## v1.0.1 2023-11-28
4
11
5
12
Minor internal improvements to the code base
Original file line number Diff line number Diff line change @@ -116,6 +116,13 @@ commands =
116
116
rm -r {toxworkdir}/.aiida
117
117
extras = tests
118
118
119
+ [testenv:pre-commit]
120
+ allowlist_externals = bash
121
+ commands = bash -ec 'pre-commit run --all-files || ( git diff; git status; exit 1; )'
122
+ extras =
123
+ pre-commit
124
+ tests
125
+
119
126
[testenv:docs-{clean,update}]
120
127
extras = docs
121
128
description =
You can’t perform that action at this time.
0 commit comments