Compare commits

...

4 Commits

Author SHA1 Message Date
Sebastian Dröge dcedd5c544 Check 1.61 MSRV on the CI 2023-12-08 12:49:33 +02:00
Sebastian Dröge 8910e44c7f Update CHANGELOG.md for 0.24.0 2023-12-08 12:49:33 +02:00
Sebastian Dröge 3f2c086eed Update version to 0.24.0 2023-12-08 12:49:33 +02:00
Sebastian Dröge ba220c7354 Lower MSRV to 1.61
As that's what actually works.
2023-12-08 12:49:33 +02:00
3 changed files with 35 additions and 3 deletions

View File

@ -25,7 +25,6 @@ jobs:
strategy:
matrix:
rust:
- 1.70.0
- stable
- beta
- nightly
@ -91,6 +90,31 @@ jobs:
- name: Test async-std-runtime
run: cargo test --features async-std-runtime
test-msrv:
name: Test MSRV
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.61.0
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- name: Install dependencies
run: |
sudo apt-get install libssl-dev
- name: Check
run: cargo check
autobahn:
name: Autobahn tests
runs-on: ubuntu-latest

View File

@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.24.0] - 2023-12-08
### Changed
- Update MSRV from 1.70 to 1.61.
- Update to tungstenite 0.21.
- Update to webpki-roots 0.26.
- Update tokio-rustls to 0.25 and rustls-native-certs to 0.7.
- Update example to hyper 1.0.
## [0.23.0] - 2023-08-08
### Changed
- Update to tungstenite 0.20.

View File

@ -8,11 +8,11 @@ license = "MIT"
homepage = "https://github.com/sdroege/async-tungstenite"
repository = "https://github.com/sdroege/async-tungstenite"
documentation = "https://docs.rs/async-tungstenite"
version = "0.23.0"
version = "0.24.0"
edition = "2018"
readme = "README.md"
include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
rust-version = "1.70"
rust-version = "1.61"
[features]
default = ["handshake"]