Skip to content

Commit d05fc30

Browse files
alippaiandygrove
authored andcommitted
ARROW-12433: [Rust] Update nightly rust version
Closes #10082 from alippai/new-nightly Authored-by: Adam Lippai <[email protected]> Signed-off-by: Andy Grove <[email protected]>
1 parent 34310e6 commit d05fc30

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ FEDORA=33
4747
PYTHON=3.6
4848
LLVM=11
4949
CLANG_TOOLS=8
50-
RUST=nightly-2020-11-24
50+
RUST=nightly-2021-03-24
5151
GO=1.15
5252
NODE=14
5353
MAVEN=3.5.4

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
strategy:
156156
matrix:
157157
arch: [amd64]
158-
rust: [nightly-2020-11-24]
158+
rust: [nightly-2021-03-24]
159159
container:
160160
image: ${{ matrix.arch }}/rust
161161
env:
@@ -267,7 +267,7 @@ jobs:
267267
strategy:
268268
matrix:
269269
arch: [amd64]
270-
rust: [nightly-2021-01-19]
270+
rust: [nightly-2021-03-24]
271271
steps:
272272
- uses: actions/checkout@v2
273273
with:
@@ -389,7 +389,7 @@ jobs:
389389
strategy:
390390
matrix:
391391
arch: [amd64]
392-
rust: [nightly-2020-11-24]
392+
rust: [nightly-2021-03-24]
393393
container:
394394
image: ${{ matrix.arch }}/rust
395395
env:

ci/docker/linux-apt-lint.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ COPY ci/scripts/install_iwyu.sh /arrow/ci/scripts/
4646
RUN arrow/ci/scripts/install_iwyu.sh /tmp/iwyu /usr/local ${clang_tools}
4747

4848
# Rust linter
49-
ARG rust=nightly-2019-09-25
49+
ARG rust=nightly-2021-03-24
5050
RUN curl https://sh.rustup.rs -sSf | \
5151
sh -s -- --default-toolchain stable -y
5252
ENV PATH /root/.cargo/bin:$PATH

rust/arrow/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Arrow uses the following features:
8080
* `simd` - Arrow uses the [packed_simd](https://crates.io/crates/packed_simd) crate to optimize many of the
8181
implementations in the [compute](https://github.com/apache/arrow/tree/master/rust/arrow/src/compute)
8282
module using SIMD intrinsics. These optimizations are turned *off* by default.
83-
If the `simd` feature is enabled, an unstable version of Rust is required (we test with `nightly-2020-11-24`)
83+
If the `simd` feature is enabled, an unstable version of Rust is required (we test with `nightly-2021-03-24`)
8484
* `flight` which contains useful functions to convert between the Flight wire format and Arrow data
8585
* `prettyprint` which is a utility for printing record batches
8686

0 commit comments

Comments
 (0)