Skip to content

Commit

Permalink
Bump Rust requirement to 1.70.0
Browse files Browse the repository at this point in the history
This way we can make use of some newer features such as the IsTerminal
trait.

Changelog: other
  • Loading branch information
yorickpeterse committed Jan 9, 2024
1 parent df5808d commit a69b423
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.68'
- '1.70'
- stable
runs-on: macos-latest
steps:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.68'
- '1.70'
runs-on: macos-latest
needs:
- compiler
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
path: |
${{ env.CARGO_HOME }}
target
key: ubuntu-1.68
key: ubuntu-1.70
- name: Installing Rust
run: ./scripts/rust.sh 1.68
run: ./scripts/rust.sh 1.70
- name: Installing dependencies
run: sudo ./scripts/deps.sh ubuntu:latest
- name: Installing clippy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.68'
- '1.70'
- stable
runs-on: ubuntu-latest
steps:
Expand All @@ -38,7 +38,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.68'
- '1.70'
image:
- archlinux:latest
- debian:11
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.68'
- '1.70'
- stable
runs-on: macos-latest
steps:
Expand All @@ -36,7 +36,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.68'
- '1.70'
runs-on: macos-latest
needs:
- compiler
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = '1.68.0'
msrv = '1.70.0'
2 changes: 1 addition & 1 deletion docs/source/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ changes.
## Requirements

- A 64-bits little-endian platform
- Rust 1.68 or newer
- Rust 1.70 or newer
- LLVM 15, with support for static linking against LLVM
- A C compiler such as [GCC](https://gcc.gnu.org/) or
[clang](https://clang.llvm.org/)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/getting-started/ivm.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ in Rust.

## Installing

ivm itself only requires Rust 1.68 or newer, but to build Inko itself you'll
ivm itself only requires Rust 1.70 or newer, but to build Inko itself you'll
need to also meet the requirements listed in the [installation
guide](installation.md).

Expand Down

0 comments on commit a69b423

Please sign in to comment.