Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
byllyfish committed Jul 18, 2023
1 parent 902da6e commit afe3b77
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Shellous Change Log
===================

0.27.0
------

- [FEATURE] Add experimental `Prompt` class for working with interactive prompts in a co-process.
- [API] The `DefaultChildWatcher` class has been downgraded to an experimental-only feature.
- [API] The `AUDIT_EVENT_SUBPROCESS_SPAWN` and `UNLAUNCHED_EXIT_CODE` constants are no longer part of the public/documented API. Internally, they were renamed.
- [LATERAL] The methods of the internal `Options` class are now deliberately marked private, as they are not part of the public/documented API.
- [LATERAL] Removed support for using Ellipsis as a special value when setting environment variables.

0.26.0
------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "shellous"
version = "0.26.0"
version = "0.27.0"
description = "Async Processes and Pipelines"
license = "Apache-2.0"
authors = ["Bill Fisher <william.w.fisher@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion shellous/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# pylint: disable=cyclic-import
# pyright: reportUnusedImport=false

__version__ = "0.26.0"
__version__ = "0.27.0"

import sys
import warnings
Expand Down

0 comments on commit afe3b77

Please sign in to comment.