File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.4.0] - 2023-03-31
11
+ ### Added
12
+ - Snapshot can be created from and converted to a GSD HOOMD frame.
13
+ - Package version is embedded in ` __version__ ` .
14
+
15
+ ### Changed
16
+ - Python 3.11 is supported and tested.
17
+ - Code style is enforced using ` black ` and ` flake8 ` . Developers should install
18
+ ` requirements-dev.txt ` and configure ` pre-commit ` .
19
+ - Classes are broken into modules for readability. The user API does not change.
20
+ - NumPy arrays use ` float ` and ` int ` as data types instead of specified precision.
21
+
10
22
## [ 0.3.0] - 2022-11-06
11
23
### Added
12
24
- Dump file defaults to reading schema from atoms header.
@@ -34,7 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
46
### Changed
35
47
- The package has been renamed ` lammpsio ` for consistency with PyPI.
36
48
37
- [ Unreleased ] : https://github.com/mphowardlab/lammpsio/compare/v0.3.0...HEAD
49
+ [ Unreleased ] : https://github.com/mphowardlab/lammpsio/compare/v0.4.0...HEAD
50
+ [ 0.4.0 ] : https://github.com/mphowardlab/lammpsio/compare/v0.3.0...v0.4.0
38
51
[ 0.3.0 ] : https://github.com/mphowardlab/lammpsio/compare/v0.2.0...v0.3.0
39
52
[ 0.2.0 ] : https://github.com/mphowardlab/lammpsio/compare/v0.1.1...v0.2.0
40
53
[ 0.1.1 ] : https://github.com/mphowardlab/lammpsio/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change 3
3
from .dump import DumpFile
4
4
from .snapshot import Snapshot
5
5
6
- __version__ = "0.3 .0"
6
+ __version__ = "0.4 .0"
You can’t perform that action at this time.
0 commit comments