This is an automated email from the ASF dual-hosted git repository.
jking pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
The following commit(s) were added to refs/heads/master by this push:
new c2c1e1d Change docker builds to include specific version of Rust
(1.35.0)
c2c1e1d is described below
commit c2c1e1d709e65d37359cefeb5dc068913f83021b
Author: Allen George <[email protected]>
AuthorDate: Mon Jul 1 07:46:04 2019 -0400
Change docker builds to include specific version of Rust (1.35.0)
---
LANGUAGES.md | 2 +-
build/docker/README.md | 2 +-
build/docker/ubuntu-bionic/Dockerfile | 2 +-
build/docker/ubuntu-xenial/Dockerfile | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/LANGUAGES.md b/LANGUAGES.md
index 370dc3c..5391fe1 100644
--- a/LANGUAGES.md
+++ b/LANGUAGES.md
@@ -336,7 +336,7 @@ Thrift's core protocol is TBinary, supported by all
languages except for JavaScr
<td align=left><a
href="https://github.com/apache/thrift/blob/master/lib/rs/README.md">Rust</a></td>
<!-- Since -----------------><td>0.11.0</td>
<!-- Build Systems ---------><td><img src="doc/images/cgrn.png"
alt="Yes"/></td><td><img src="doc/images/cred.png" alt=""/></td>
-<!-- Language Levels -------><td>1.17.0</td><td>1.30.0</td>
+<!-- Language Levels -------><td>1.35.0</td><td>1.30.0</td>
<!-- Low-Level Transports --><td><img src="doc/images/cred.png"
alt=""/></td><td><img src="doc/images/cred.png" alt=""/></td><td><img
src="doc/images/cgrn.png" alt="Yes"/></td><td><img src="doc/images/cred.png"
alt=""/></td><td><img src="doc/images/cgrn.png" alt="Yes"/></td><td><img
src="doc/images/cred.png" alt=""/></td>
<!-- Transport Wrappers ----><td><img src="doc/images/cgrn.png"
alt="Yes"/></td><td><img src="doc/images/cred.png" alt=""/></td><td><img
src="doc/images/cred.png" alt=""/></td><td><img src="doc/images/cred.png"
alt=""/></td>
<!-- Protocols -------------><td><img src="doc/images/cgrn.png"
alt="Yes"/></td><td><img src="doc/images/cgrn.png" alt="Yes"/></td><td><img
src="doc/images/cred.png" alt=""/></td><td><img src="doc/images/cgrn.png"
alt="Yes"/></td>
diff --git a/build/docker/README.md b/build/docker/README.md
index b65f74b..ce79985 100644
--- a/build/docker/README.md
+++ b/build/docker/README.md
@@ -192,6 +192,6 @@ Last updated: October 1, 2017
| python | 2.7.12 | 2.7.15rc1 | |
| python3 | 3.5.2 | 3.6.7 | |
| ruby | 2.3.1p112 | 2.5.1p57 | |
-| rust | 1.30.0 | 1.30.0 | |
+| rust | 1.35.0 | 1.35.0 | |
| smalltalk | | | Not in CI |
| swift | | 4.2.1 | |
diff --git a/build/docker/ubuntu-bionic/Dockerfile
b/build/docker/ubuntu-bionic/Dockerfile
index c8131bb..b508b1e 100644
--- a/build/docker/ubuntu-bionic/Dockerfile
+++ b/build/docker/ubuntu-bionic/Dockerfile
@@ -257,7 +257,7 @@ RUN apt-get install -y --no-install-recommends \
ruby-bundler
# Rust dependencies
-RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y
+RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.35.0 -y
# Swift on Linux for cross tests
RUN cd / && \
diff --git a/build/docker/ubuntu-xenial/Dockerfile
b/build/docker/ubuntu-xenial/Dockerfile
index 97aaaea..119d4cd 100644
--- a/build/docker/ubuntu-xenial/Dockerfile
+++ b/build/docker/ubuntu-xenial/Dockerfile
@@ -255,7 +255,7 @@ RUN apt-get install -y --no-install-recommends \
ruby-bundler
# Rust dependencies
-RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y
+RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.35.0 -y
# Clean up
RUN rm -rf /var/cache/apt/* && \