Skip to content

Commit

Permalink
update version number (#278)
Browse files Browse the repository at this point in the history
## Describe your changes

## Checklist before requesting a review
- [ ] Add unit tests for this change.
- [ ] Make sure all tests can pass.
- [ ] Update documents if necessary.
- [ ] Format your code by running `pre-commit run --all-files`

## (Optional) Issue link
  • Loading branch information
leqiao-1 committed May 17, 2023
1 parent d234375 commit fb639ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ python -m pip install .

Then cd into the desired example folder and follow the instructions in the `README.md` file.

For examples corresponding to a specific release of Olive, checkout the corresponding tag. For instance, to use the examples corresponding to the `v0.1.0` release, run the following command:
For examples corresponding to a specific release of Olive, checkout the corresponding tag. For instance, to use the examples corresponding to the `v0.2.0` release, run the following command:

```bash
git checkout tags/v0.1.0
git checkout tags/v0.2.0
```

### Conda env
Expand Down
2 changes: 1 addition & 1 deletion olive/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
_logger.addHandler(_sc)
_logger.propagate = False

__version__ = "0.1.0"
__version__ = "0.2.0"


def set_default_logger_severity(level):
Expand Down
2 changes: 1 addition & 1 deletion olive/systems/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN pip install azure-ai-ml \
openvino-dev[tensorflow,onnx] \
tensorflow \
onnxconverter_common \
olive-ai==0.1.0
olive-ai==0.2.0

ADD requirements.txt requirements.txt
RUN pip install -r requirements.txt
Expand Down

0 comments on commit fb639ba

Please sign in to comment.