Skip to content

Commit 4023661

Browse files
committed
Release version 0.4.0
1 parent ddb4292 commit 4023661

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

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+
1022
## [0.3.0] - 2022-11-06
1123
### Added
1224
- 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
3446
### Changed
3547
- The package has been renamed `lammpsio` for consistency with PyPI.
3648

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
3851
[0.3.0]: https://github.com/mphowardlab/lammpsio/compare/v0.2.0...v0.3.0
3952
[0.2.0]: https://github.com/mphowardlab/lammpsio/compare/v0.1.1...v0.2.0
4053
[0.1.1]: https://github.com/mphowardlab/lammpsio/compare/v0.1.0...v0.1.1

src/lammpsio/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from .dump import DumpFile
44
from .snapshot import Snapshot
55

6-
__version__ = "0.3.0"
6+
__version__ = "0.4.0"

0 commit comments

Comments
 (0)