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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Unreleased]

## [0.3.1] - 2026-03-09

### Fixed

- **`executable_task` command parsing** — `shlex.split` is now applied correctly to the command string returned by the decorated function, ensuring commands with arguments and quoted strings are parsed properly.

## [0.3.0] - 2026-02-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "radical.asyncflow"
version = "0.3.0"
version = "0.3.1"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The project version is specified here and also in the root VERSION file. Maintaining the version number in two separate files increases the chance of them becoming out of sync during a release. To ensure a single source of truth, it would be better to have one file (e.g., pyproject.toml) define the version, and have other places (like the VERSION file, if needed by build scripts) read from it or be generated automatically.

description = "A High Performance Asynchronous Workflow Scripting Library"

authors = [
Expand Down