diff --git a/cli/README.md b/cli/README.md index d891d93..3b3cb97 100644 --- a/cli/README.md +++ b/cli/README.md @@ -6,7 +6,7 @@ This Command-Line Interface (CLI) is designed to provide an easy and interactive 1. Create a batch configuration (ex. `poc.json`) file using the syntax and structure outlined in the [RAI Workflow Framework README](../workflow/README.md). 2. Add `rai-workflow-manager` as dependency to your `requirements.txt` file: ```txt -rai-workflow-manager==0.0.20 +rai-workflow-manager==0.0.21 ``` 3. Build the project: ```bash diff --git a/workflow/__init__.py b/workflow/__init__.py index c3ec13c..40ed193 100644 --- a/workflow/__init__.py +++ b/workflow/__init__.py @@ -12,5 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version_info__ = (0, 0, 20) +__version_info__ = (0, 0, 21) __version__ = ".".join(map(str, __version_info__))