From c59c533bd559febaf158fda590ae4f785a8591a0 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Tue, 26 Jul 2022 07:54:47 +0200 Subject: [PATCH 1/2] Start v0.5 development --- Cargo.toml | 3 ++- README.md | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b530bf55..dda00564 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "socket2" -version = "0.4.5" +version = "0.5.0" +publish = false authors = [ "Alex Crichton ", "Thomas de Zeeuw " diff --git a/README.md b/README.md index 77963b74..723138f6 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,14 @@ See the [API documentation] for more. [API documentation]: https://docs.rs/socket2 -# Two branches +# Branches Currently Socket2 supports two versions: v0.4 and v0.3. Version 0.4 is developed -in the master branch, version 0.3 in the [v0.3.x branch]. +in the [v0.4.x branch] branch, version 0.3 in the [v0.3.x branch]. Version 0.5 +is currently being developed in the master branch. [v0.3.x branch]: https://github.com/rust-lang/socket2/tree/v0.3.x +[v0.4.x branch]: https://github.com/rust-lang/socket2/tree/v0.4.x # OS support From 348e606e5074189e0b691a94ca8fe937200e6bfb Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Tue, 26 Jul 2022 07:57:10 +0200 Subject: [PATCH 2/2] Update MSRV to 1.63 So we can use the I/O safety feature stabilised in 1.63: https://github.com/rust-lang/rust/pull/95118. --- .github/workflows/main.yml | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 49fef7a7..2884e198 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,14 +15,14 @@ jobs: strategy: fail-fast: false matrix: - build: [stable, 1.46.0, beta, nightly, macos, windows] + build: [stable, 1.63.0, beta, nightly, macos, windows] include: - build: stable os: ubuntu-latest rust: stable - - build: 1.46.0 + - build: 1.63.0 os: ubuntu-latest - rust: 1.46.0 + rust: 1.63.0 - build: beta os: ubuntu-latest rust: beta diff --git a/README.md b/README.md index 723138f6..474a5b4d 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ feature flag. # Minimum Supported Rust Version (MSRV) -Socket2 uses 1.46.0 as MSRV. +Socket2 uses 1.63.0 as MSRV. # License