From 1bbbe0a2e85c3164ad8b6c910a30fb94520d8777 Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Thu, 1 Feb 2024 11:27:23 +0100 Subject: [PATCH] Version 0.17.0 --- CONTRIBUTORS | 2 ++ bluer-tools/Cargo.toml | 4 ++-- bluer/CHANGELOG.md | 4 +++- bluer/Cargo.toml | 2 +- bluer/README.md | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index d8040f0..4d8f8d0 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -6,7 +6,9 @@ Kjetil Jørgensen Maxim Khitrov Gavin Li Ulf Lilleengen +Jon Magnuson Alex Moon +Paul Otto Otávio Ribeiro Daniel Thoma Sebastian Urban diff --git a/bluer-tools/Cargo.toml b/bluer-tools/Cargo.toml index 00cb50a..3a55b70 100644 --- a/bluer-tools/Cargo.toml +++ b/bluer-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bluer-tools" -version = "0.17.0-pre1" +version = "0.17.0" description = "BlueR tools: swiss army knife for GATT services, L2CAP and RFCOMM sockets on Linux" readme = "README.md" authors = ["Sebastian Urban ", "BlueR contributors"] @@ -28,7 +28,7 @@ name = "rfcat" path = "src/rfcat.rs" [dependencies] -bluer = { version = "0.17.0-pre1", path = "../bluer", features = ["full"] } +bluer = { version = "0.17.0", path = "../bluer", features = ["full"] } futures = "0.3" tokio = { version = "1", features = [ "io-std", diff --git a/bluer/CHANGELOG.md b/bluer/CHANGELOG.md index 948743f..f184ba7 100644 --- a/bluer/CHANGELOG.md +++ b/bluer/CHANGELOG.md @@ -4,11 +4,13 @@ All notable changes to BlueR 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.17.0 - 2023-11-xx +## 0.17.0 - 2024-02-01 ### Changed - DiscoveryFilter::duplicate_data default is now false ### Fixed - work around bluetoothd discovery filter crash +### Changed +- minimum supported Rust version is 1.75.0 ## 0.16.1 - 2023-09-13 ### Added diff --git a/bluer/Cargo.toml b/bluer/Cargo.toml index 668fb9b..3392e37 100644 --- a/bluer/Cargo.toml +++ b/bluer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bluer" -version = "0.17.0-pre1" +version = "0.17.0" description = "BlueR: official Rust interface to the Linux Bluetooth protocol stack (BlueZ)" readme = "README.md" authors = [ diff --git a/bluer/README.md b/bluer/README.md index faa7773..059e2da 100644 --- a/bluer/README.md +++ b/bluer/README.md @@ -89,7 +89,7 @@ To enable all crate features specify the `full` crate feature. Requirements ------------ -The minimum support Rust version (MSRV) is 1.70. +The minimum support Rust version (MSRV) is 1.75. This library has been tested with [BlueZ 5.60]. Older versions might work, but be aware that many bugs related to GATT handling exist.