Skip to content

Commit

Permalink
bump MSRV to 1.75
Browse files Browse the repository at this point in the history
required by zbus >= 4
  • Loading branch information
wisp3rwind committed Oct 15, 2024
1 parent f1f8331 commit 037d311
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG debian_version=slim-bookworm
ARG rust_version=1.74.0
ARG rust_version=1.75.0
FROM rust:${rust_version}-${debian_version}

ARG DEBIAN_FRONTEND=noninteractive
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
matrix:
os: [ubuntu-latest]
toolchain:
- "1.74" # MSRV (Minimum supported rust version)
- "1.75" # MSRV (Minimum supported rust version)
- stable
experimental: [false]
# Ignore failures in beta
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
matrix:
os: [windows-latest]
toolchain:
- "1.74" # MSRV (Minimum supported rust version)
- "1.75" # MSRV (Minimum supported rust version)
- stable
steps:
- name: Checkout code
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
- aarch64-unknown-linux-gnu
- riscv64gc-unknown-linux-gnu
toolchain:
- "1.74" # MSRV (Minimum supported rust version)
- "1.75" # MSRV (Minimum supported rust version)
- stable
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ https://github.com/librespot-org/librespot
configurations.
- [audio] Files are now downloaded over the HTTPS CDN (breaking)
- [audio] Improve file opening and seeking performance (breaking)
- [core] MSRV is now 1.74 (breaking)
- [core] MSRV is now 1.75 (breaking)
- [connect] `DeviceType` moved out of `connect` into `core` (breaking)
- [connect] Update and expose all `spirc` context fields (breaking)
- [connect] Add `Clone, Defaut` traits to `spirc` contexts
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot"
version = "0.5.0-dev"
rust-version = "1.74"
rust-version = "1.75"
authors = ["Librespot Org"]
license = "MIT"
description = "An open source client library for Spotify, with support for Spotify Connect"
Expand Down
2 changes: 1 addition & 1 deletion audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot-audio"
version = "0.5.0-dev"
rust-version = "1.74"
rust-version = "1.75"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The audio fetching logic for librespot"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion connect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot-connect"
version = "0.5.0-dev"
rust-version = "1.74"
rust-version = "1.75"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery and Spotify Connect logic for librespot"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion contrib/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN apt-get install -y curl git build-essential crossbuild-essential-arm64 cross
RUN apt-get install -y libasound2-dev libasound2-dev:arm64 libasound2-dev:armel libasound2-dev:armhf
RUN apt-get install -y libpulse0 libpulse0:arm64 libpulse0:armel libpulse0:armhf

RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.74 -y
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.75 -y
ENV PATH="/root/.cargo/bin/:${PATH}"
RUN rustup target add aarch64-unknown-linux-gnu
RUN rustup target add arm-unknown-linux-gnueabi
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot-core"
version = "0.5.0-dev"
rust-version = "1.74"
rust-version = "1.75"
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
description = "The core functionality provided by librespot"
Expand Down
2 changes: 1 addition & 1 deletion discovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot-discovery"
version = "0.5.0-dev"
rust-version = "1.74"
rust-version = "1.75"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery logic for librespot"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot-metadata"
version = "0.5.0-dev"
rust-version = "1.74"
rust-version = "1.75"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions oauth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot-oauth"
version = "0.5.0-dev"
rust-version = "1.73"
rust-version = "1.75"
authors = ["Nick Steel <nick@nsteel.co.uk>"]
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"
license = "MIT"
Expand All @@ -15,4 +15,4 @@ thiserror = "1.0"
url = "2.2"

[dev-dependencies]
env_logger = { version = "0.11.2", default-features = false, features = ["color", "humantime", "auto-color"] }
env_logger = { version = "0.11.2", default-features = false, features = ["color", "humantime", "auto-color"] }
2 changes: 1 addition & 1 deletion playback/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot-playback"
version = "0.5.0-dev"
rust-version = "1.74"
rust-version = "1.75"
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
description = "The audio playback logic for librespot"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "librespot-protocol"
version = "0.5.0-dev"
rust-version = "1.74"
rust-version = "1.75"
authors = ["Paul Liétar <paul@lietar.net>"]
build = "build.rs"
description = "The protobuf logic for communicating with Spotify servers"
Expand Down

0 comments on commit 037d311

Please sign in to comment.