Skip to content

Commit

Permalink
Release 0.24.0 (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz authored and khsrali committed Jan 9, 2025
1 parent 141f77d commit c154d02
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## v0.24.0 - 2025-01-08

### Breaking changes
- Direct message constants (`KILL_MSG`, `PAUSE_MSG`, `PLAY_MSG`, `STATUS_MSG`) are replaced with the `MessageBuilder` class methods.

### Features
- Message builder for constructing message with carrying more information (#291) [[f760b4a]](https://github.com/aiidateam/plumpy/commit/f760b4aaf6a46bbfc13bab88e36271aab122a641)
- Make Message interface is hidden inside function call (#301) [[a4b896]](https://github.com/aiidateam/plumpy/commit/a4b896255a4d92cef7ff3494e915acabd64d97c1)

### Devops
- Make rpc callback exception more explicit and wind up to show more infos (#305) [[ecef9b9]](https://github.com/aiidateam/plumpy/commit/ecef9b9a4ebbeafacd3b6a84952ad770972f2814)


## v0.23.0 - 2024-12-13

### Breaking changes
- All the `run()` methods across the interface are now asynchronous (async def).
- Changes from `Coroutine` to `Awaitable` in function signatures.

### Bug fixes
- Make `Waiting.resume()` idempotent (#285) [[20e5898]](https://github.com/aiidateam/plumpy/commit/20e5898e0c9037624988fe321e784f4fe38a2e8d)

### Devops
- Make `Process.run` async (#272) [[4611154]](https://github.com/aiidateam/plumpy/commit/4611154c76ac0991bcf7371b21488f4390648c28)
- Switch to ruff and other devops improvements (#289) [[55e05e9]](https://github.com/aiidateam/plumpy/commit/55e05e956c9715fb69785d83d0194b65811b4720)
- Bump Python version in CI: 3.8 to 3.12 (Increase python version used in continuous deployment git-workflow from 3.8 to 3.12 (#304) [[bb32edb]](https://github.com/aiidateam/plumpy/pull/304)


## v0.22.3 - 2024-02-02

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion src/plumpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# mypy: disable-error-code=name-defined
__version__ = '0.22.3'
__version__ = '0.24.0'

import logging

Expand Down

0 comments on commit c154d02

Please sign in to comment.