From 30227b183bc1a9616fe0e47a81e11b518caca03b Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Wed, 13 Sep 2023 09:21:54 +0200 Subject: [PATCH] Version 0.16.1 --- CONTRIBUTORS | 2 ++ bluer-tools/CHANGELOG.md | 10 ++++++++++ bluer-tools/Cargo.toml | 4 ++-- bluer/CHANGELOG.md | 4 ++++ bluer/Cargo.toml | 2 +- 5 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 4176388..d8040f0 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2,9 +2,11 @@ This file lists all contributors to BlueR in alphabetical order. Mohammad Taha Bin Firoz Dejan Bosanac +Kjetil Jørgensen Maxim Khitrov Gavin Li Ulf Lilleengen +Alex Moon Otávio Ribeiro Daniel Thoma Sebastian Urban diff --git a/bluer-tools/CHANGELOG.md b/bluer-tools/CHANGELOG.md index 894b5d1..621a3d6 100644 --- a/bluer-tools/CHANGELOG.md +++ b/bluer-tools/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to BlueR tools 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.16.1 - 2023-09-13 +### Added +- show MTU of GATT characteristics +### Changed +- update to BlueR 0.16.1 + +## 0.16.0 - 2023-08-19 +### Changed +- update to BlueR 0.16.0 + ## 0.15.4 - 2022-12-14 ### Changed - update to BlueR 0.15.4 diff --git a/bluer-tools/Cargo.toml b/bluer-tools/Cargo.toml index af4331e..4aeb98b 100644 --- a/bluer-tools/Cargo.toml +++ b/bluer-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bluer-tools" -version = "0.16.0" +version = "0.16.1" description = "BlueR tools: swiss army knife for GATT services, L2CAP and RFCOMM sockets on Linux" readme = "README.md" authors = ["Sebastian Urban ", "BlueR contributors"] @@ -27,7 +27,7 @@ name = "rfcat" path = "src/rfcat.rs" [dependencies] -bluer = { version = "0.16.0", path = "../bluer", features = ["full"] } +bluer = { version = "0.16.1", path = "../bluer", features = ["full"] } futures = "0.3" tokio = { version = "1", features = [ "io-std", diff --git a/bluer/CHANGELOG.md b/bluer/CHANGELOG.md index c036c4e..59b7c4a 100644 --- a/bluer/CHANGELOG.md +++ b/bluer/CHANGELOG.md @@ -4,6 +4,10 @@ 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.16.1 - 2023-09-13 +### Added +- expose MTU of remote GATT characteristics + ## 0.16.0 - 2023-07-19 ### Added - Experimental Bluetooth mesh support diff --git a/bluer/Cargo.toml b/bluer/Cargo.toml index 7f42326..7589851 100644 --- a/bluer/Cargo.toml +++ b/bluer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bluer" -version = "0.16.0" +version = "0.16.1" description = "BlueR: official Rust interface to the Linux Bluetooth protocol stack (BlueZ)" readme = "README.md" authors = [