Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ jobs:
{"label": "dev", "path": "dev/"},
{"label": "v1", "path": "v1/"},
{"label": "v0.30.2", "path": "v0.30.2/"},
{"label": "v0.50.0rc2", "path": "v0.50.0rc2/"},
{"label": "v0.50.0rc3", "path": "v0.50.0rc3/"},
{"label": "v0.50.0", "path": "v0.50.0/"},
{"label": "v0.50.1", "path": "v0.50.1/"},
]
lbl = os.environ.get("VERSION_LABEL", "")
tgt = os.environ.get("TARGET_FOLDER", "")
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ keywords:
- physical-constant
- schema
license: BSD-3-Clause
version: 0.50.1
date-released: '2026-05-21'
version: 0.50.2
date-released: '2026-05-28'
13 changes: 13 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ Changelog
.. +++++


.. _`sec:cl0502`:

0.50.2 / 2026-05-28
-------------------

:docs:`v0.50.2` for current. :docs:`v0.30.2` for QCSchema v1.

Bug Fixes
+++++++++
- (:pr:`404`) Fix the typing for the behind-the-scenes _v1v2.FailedOperation class so that numpy
in inputs can serialize cleanly when called from QCFractalCompute


.. _`sec:cl0501`:

0.50.1 / 2026-05-21
Expand Down
2 changes: 1 addition & 1 deletion qcelemental/models/_v1v2/failed_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class FailedOperation(ProtoModel):
id: Optional[str] = Field(None)
input_data: Any = Field(None)
input_data: Optional[Union[ProtoModel, GenericData]] = Field(None)
success: bool = Field(False)
error: ComputeError = Field(...)
extras: Optional[GenericData] = Field({})
Expand Down
Loading