Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update ChangeLog
  • Loading branch information
janbridley committed Mar 12, 2025
commit 953a8d6eecf83dd369ed3be1b366d331d937c41d
13 changes: 13 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ Changelog
The format is based on `Keep a Changelog <http://keepachangelog.com/en/1.1.0/>`__.
This project adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.html>`__.

v0.2.1 - 20XX-XX-XX
-------------------

Added
~~~~~
- New ``additional_columns`` parameter for ``build_unit_cell`` that allows the return of
atom site labels and similar data alongside unit cell positions.
- Ensured consistent ordering of lattice positions returned from ``build_unit_cell``.

Fixed
~~~~~
- Type hints now properly link to their associated documentation.

v0.2.0 - 2025-02-19
-------------------

Expand Down
2 changes: 1 addition & 1 deletion parsnip/parsnip.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def get_from_loops(self, index: str | Iterable[str]):
return result[0] if len(result) == 1 else result

if isinstance(index, (set, frozenset)):
index = list(index) # TODO: add to changelog
index = list(index)

result, index = [], np.atleast_1d(index)
for table in self.loops:
Expand Down
Loading