Skip to content

Commit

Permalink
0.9.8 (#169)
Browse files Browse the repository at this point in the history
* πŸ› Fix priority of core plugin

* πŸ”– 0.9.8
  • Loading branch information
pwwang authored May 12, 2023
1 parent 3d60126 commit d358f42
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.9.8

- πŸ› Fix priority of core plugin

## 0.9.7

- πŸ”§ Allow to inherit doc from base class for Pipen/Proc
Expand Down
2 changes: 1 addition & 1 deletion pipen/pluginmgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class PipenMainPlugin:
name = "core"
# The priority is set to -1000 to make sure it is the first plugin
# to be called
order = -1000
priority = -1000

@plugin.impl
def on_proc_shutdown(self, proc: Proc, sig: signal.Signals):
Expand Down
2 changes: 1 addition & 1 deletion pipen/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Provide version of pipen"""

__version__ = "0.9.7"
__version__ = "0.9.8"
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 = "poetry.masonry.api"

[tool.poetry]
name = "pipen"
version = "0.9.7"
version = "0.9.8"
description = "A pipeline framework for python"
authors = [ "pwwang <[email protected]>",]
license = "MIT"
Expand Down

0 comments on commit d358f42

Please sign in to comment.