From bfde305abb433e5dfa565cea238636d4d1d03fad Mon Sep 17 00:00:00 2001 From: Nicolas Bigaouette Date: Mon, 22 Feb 2021 22:15:35 -0500 Subject: [PATCH 1/2] Update docker image to 1.50 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24823425..d8f1f322 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,7 @@ Then on each platform build with the proper feature flag: Prepare the container: ```sh -❯ docker run -it --rm --name rustbuilder -v "$PWD":/usr/src/myapp -w /usr/src/myapp rust:1.47.0 /bin/bash +❯ docker run -it --rm --name rustbuilder -v "$PWD":/usr/src/myapp -w /usr/src/myapp rust:1.50.0 /bin/bash ❯ apt-get update ❯ apt-get install clang ❯ rustup component add rustfmt From 194868358ce60c9f7a05a1ed52ce35a7a09aee99 Mon Sep 17 00:00:00 2001 From: Nicolas Bigaouette Date: Mon, 22 Feb 2021 22:16:01 -0500 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 982f4e28..866b8d8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.11] - 2021-02-22 + ### Changed - Prevent session from being built a temporary environment resulting in segfault ([#46](https://github.com/nbigaouette/onnxruntime-rs/pull/46)) -- Update onnxruntime to 1.6.0 +- Update onnxruntime to 1.6.0 ([#59](https://github.com/nbigaouette/onnxruntime-rs/pull/59)) ### Added