Releases: nat-n/poethepoet
Releases · nat-n/poethepoet
Release list
0.13.1
0.13.0
0.12.3
0.12.2
0.12.1
0.12.0
Enhancements
- Poe the Poet now works as a plugin for poetry >= 1.2 (#46)
- Supports running poe tasks as poetry commands, and registering them as hooks on other poetry commands
- Improve interpreter resolution logic and configuration for shell tasks (#45)
- Add support for powershell, pwsh, fish, and python interpreters
- Better defaults for finding bash on windows
- Add ability to include tasks and env vars from another toml or json file (#44)
Breaking changes
- No longer give precedence to the
$SHELLenv var when selecting an interpreter in shell tasks (#27)
0.11.0
Enhancements
- Add support for of named arguments (#6)
- task definitions may now include the
argsoptions to defining CLI options to be accepted for that task, and exposed to the task in a manner appropriate for the task type
- task definitions may now include the
- Support task level and global options for loading an var vars from an envfile (#29)
- Add ability to declare default values for env vars in pyproject.toml, similar to ?= in a makefile (#30)
- Add experimental implementation of task dependencies (#26)
- tasks now support addition options:
depsto define a list of tasks that are run before this oneusesto define a map of tasks by variable name, for tasks that are run before this one and their stdout is captured and exposed to this task via the environment variable with the given name.capture_stdoutto give the name of a file that the stdout of this file should be piped to.
- tasks now support addition options:
- Add global option for overriding the default verbosity level (#34)
- Make the -v and -q global CLI options incremental (#35)
- Update ignore_fail option to support non-zero exit status from sequences (#40)
Dependency updates
- Switch from tomlkit to tomli for performance and more complete toml support
- Update pastel dependency to latest version
Breaking changes
- drop support for python < 3.6.2
Full Changelog: v0.10.0...v0.11.0
0.11.0-beta6
Enhancements
- Update ignore_fail option to support non-zero exit status from sequences (#40 )
0.11.0-beta5
Enhancements
- Make the -v and -q global CLI options incremental (#35)
0.11.0-beta4
Enhancements
- Add global option for overriding the default verbosity level (#34)