Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Nov 17, 2022
1 parent 48894f6 commit 299dce5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### Upcoming
### 22.11.3
- Fix bug in UI that wasn't letting users update software
- during `pio update --app`, we now check for additional files in the github release that are to be executed. This provides a path of upgrading non-Python things.
- Improvements to PioreactorUI


### 22.11.2
Expand Down
3 changes: 3 additions & 0 deletions pioreactor/cli/pio.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ def kill(job: list[str], all_jobs: bool) -> None:
Another approach is to iterate through /tmp/jon_metadata_*.db and fire an MQTT event to kill them. This would fail though if
not connected to leader...
Another option is for _all jobs and actions_ to listen to a special topic: pioreactor/{whoami.UNIVERSAL_IDENTIFIER}/{whoami.UNIVERSAL_EXPERIMENT}/kill
A single publish is sent, and everyone kills themselves. This fails if not connected to a leader.
"""

from sh import pkill # type: ignore
Expand Down
2 changes: 1 addition & 1 deletion pioreactor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import annotations


__version__ = "22.11.2"
__version__ = "22.11.3"


def _get_hardware_version() -> tuple[int, int]:
Expand Down

0 comments on commit 299dce5

Please sign in to comment.