diff --git a/cli/README.md b/cli/README.md index 49ae928..d891d93 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.19 +rai-workflow-manager==0.0.20 ``` 3. Build the project: ```bash diff --git a/requirements.txt b/requirements.txt index 3c6e967..f387b4a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ tomli==2.0.1 ed25519==1.5 protobuf==3.20.2 pyarrow==6.0.1 -rai-sdk==0.6.14 +rai-sdk==0.6.16 requests==2.31.0 requests-toolbelt==1.0.0 urllib3==1.26.6 diff --git a/workflow/__init__.py b/workflow/__init__.py index 7bb6eba..c3ec13c 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, 19) +__version_info__ = (0, 0, 20) __version__ = ".".join(map(str, __version_info__))