From 6bf2b0cea866a7cbff5adc9fa54e034e8ca7a678 Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Thu, 16 Dec 2021 14:14:48 +0100 Subject: [PATCH] Version 0.13.1 --- bluer-tools/CHANGELOG.md | 4 ++++ bluer-tools/Cargo.toml | 6 +++--- bluer/CHANGELOG.md | 4 ++++ bluer/Cargo.toml | 4 ++-- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/bluer-tools/CHANGELOG.md b/bluer-tools/CHANGELOG.md index 3554c56..7388a8c 100644 --- a/bluer-tools/CHANGELOG.md +++ b/bluer-tools/CHANGELOG.md @@ -4,6 +4,10 @@ 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.13.1 - 2021-12-16 +### Changed +- update to BlueR 0.13.1 + ## 0.13.0 - 2021-11-10 ### Added - rfcat diff --git a/bluer-tools/Cargo.toml b/bluer-tools/Cargo.toml index 6bf76ec..dacc280 100644 --- a/bluer-tools/Cargo.toml +++ b/bluer-tools/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "bluer-tools" -version = "0.13.0" +version = "0.13.1" description = "BlueR tools: swiss army knife for GATT services, L2CAP and RFCOMM sockets on Linux" readme = "README.md" authors = ["Sebastian Urban "] repository = "https://github.com/bluez/bluer" -keywords = ["bluetooth", "bluez", "ble", "gatt", "l2cap"] +keywords = ["bluetooth", "bluez", "gatt", "l2cap", "rfcomm"] categories = ["hardware-support", "command-line-utilities"] license = "BSD-2-Clause" edition = "2018" @@ -27,7 +27,7 @@ name = "rfcat" path = "src/rfcat.rs" [dependencies] -bluer = { version = "0.13.0", path = "../bluer" } +bluer = { version = "0.13.1", path = "../bluer" } futures = "0.3" tokio = { version = "1", features = ["io-std", "io-util", "process", "rt-multi-thread"] } clap = "=3.0.0-beta.5" diff --git a/bluer/CHANGELOG.md b/bluer/CHANGELOG.md index ab2f5ba..4f126bb 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.13.1 - 2021-12-16 +### Changed +- fix manufacturer data property change events not working + ## 0.13.0 - 2021-11-11 ### Added - RFCOMM sockets diff --git a/bluer/Cargo.toml b/bluer/Cargo.toml index d9d0e91..4b86d9e 100644 --- a/bluer/Cargo.toml +++ b/bluer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bluer" -version = "0.13.0" +version = "0.13.1" description = "BlueR: official Rust interface to the Linux Bluetooth protocol stack (BlueZ)" readme = "README.md" authors = [ @@ -9,7 +9,7 @@ authors = [ "Ben Stern ", ] repository = "https://github.com/bluez/bluer" -keywords = ["bluetooth", "bluez", "ble", "gatt", "l2cap"] +keywords = ["bluetooth", "bluez", "gatt", "l2cap", "rfcomm"] categories = ["asynchronous", "hardware-support", "os::linux-apis"] license = "BSD-2-Clause" edition = "2018"