From 8aa824ef32fa1fb2325e1bfff61f5f1abb994481 Mon Sep 17 00:00:00 2001 From: h2zero Date: Mon, 24 Feb 2025 17:53:24 -0700 Subject: [PATCH] Release 2.2.0 --- CHANGELOG.md | 6 ++++++ NOTICE | 2 +- docs/Doxyfile | 2 +- idf_component.yml | 2 +- library.json | 2 +- src/NimBLE2904.cpp | 2 +- src/NimBLE2904.h | 2 +- src/NimBLEAddress.cpp | 2 +- src/NimBLEAddress.h | 2 +- src/NimBLEAdvertisedDevice.cpp | 2 +- src/NimBLEAdvertisedDevice.h | 2 +- src/NimBLEAdvertisementData.cpp | 2 +- src/NimBLEAdvertisementData.h | 2 +- src/NimBLEAdvertising.cpp | 2 +- src/NimBLEAdvertising.h | 2 +- src/NimBLEAttValue.cpp | 2 +- src/NimBLEAttValue.h | 2 +- src/NimBLEAttribute.h | 2 +- src/NimBLEBeacon.cpp | 2 +- src/NimBLEBeacon.h | 2 +- src/NimBLECharacteristic.cpp | 2 +- src/NimBLECharacteristic.h | 2 +- src/NimBLEClient.cpp | 2 +- src/NimBLEClient.h | 2 +- src/NimBLEConnInfo.h | 2 +- src/NimBLEDescriptor.cpp | 2 +- src/NimBLEDescriptor.h | 2 +- src/NimBLEDevice.cpp | 2 +- src/NimBLEDevice.h | 2 +- src/NimBLEEddystoneTLM.cpp | 2 +- src/NimBLEEddystoneTLM.h | 2 +- src/NimBLEExtAdvertising.cpp | 2 +- src/NimBLEExtAdvertising.h | 2 +- src/NimBLEHIDDevice.cpp | 2 +- src/NimBLEHIDDevice.h | 2 +- src/NimBLELocalAttribute.h | 2 +- src/NimBLELocalValueAttribute.h | 2 +- src/NimBLELog.h | 2 +- src/NimBLERemoteCharacteristic.cpp | 2 +- src/NimBLERemoteCharacteristic.h | 2 +- src/NimBLERemoteDescriptor.cpp | 2 +- src/NimBLERemoteDescriptor.h | 2 +- src/NimBLERemoteService.cpp | 2 +- src/NimBLERemoteService.h | 2 +- src/NimBLERemoteValueAttribute.cpp | 2 +- src/NimBLERemoteValueAttribute.h | 2 +- src/NimBLEScan.cpp | 2 +- src/NimBLEScan.h | 2 +- src/NimBLEServer.cpp | 2 +- src/NimBLEServer.h | 2 +- src/NimBLEService.cpp | 2 +- src/NimBLEService.h | 2 +- src/NimBLEUUID.cpp | 2 +- src/NimBLEUUID.h | 2 +- src/NimBLEUtils.cpp | 2 +- src/NimBLEUtils.h | 2 +- 56 files changed, 61 insertions(+), 55 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7ea6e0..88fd3de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog All notable changes to this project will be documented in this file. +## [2.2.0] 2025-02-24 + +## Added +- Conditional macros for logging. +- `NimBLEDevicecallbacks` class with a callback for handling bond storage. + ## [2.1.1] 2025-01-26 ## Fixed diff --git a/NOTICE b/NOTICE index a2ef007..d4ce49c 100644 --- a/NOTICE +++ b/NOTICE @@ -1,6 +1,6 @@ esp-nimble-cpp NimBLE-Arduino -Copyright 2020-2024 Ryan Powell and +Copyright 2020-2025 Ryan Powell and esp-nimble-cpp, NimBLE-Arduino contributors. The Initial Developer of some parts of this library, which are copied from, diff --git a/docs/Doxyfile b/docs/Doxyfile index 5f0a431..20de8e6 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = esp-nimble-cpp # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.1.1 +PROJECT_NUMBER = 2.2.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/idf_component.yml b/idf_component.yml index 83d3a93..46280ea 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,5 +1,5 @@ ## IDF Component Manager Manifest File -version: "2.1.1" +version: "2.2.0" license: "Apache-2.0" description: "C++ wrapper for the NimBLE BLE stack" url: "https://github.com/h2zero/esp-nimble-cpp" diff --git a/library.json b/library.json index 0c7064f..faff3a0 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "esp-nimble-cpp", - "version": "2.1.1", + "version": "2.2.0", "description": "C++ wrapper for the NimBLE BLE stack", "keywords": [ "BLE", diff --git a/src/NimBLE2904.cpp b/src/NimBLE2904.cpp index 5a6b3ee..b53455f 100644 --- a/src/NimBLE2904.cpp +++ b/src/NimBLE2904.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLE2904.h b/src/NimBLE2904.h index a958b66..b26f236 100644 --- a/src/NimBLE2904.h +++ b/src/NimBLE2904.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAddress.cpp b/src/NimBLEAddress.cpp index 16b1482..e67d3a9 100644 --- a/src/NimBLEAddress.cpp +++ b/src/NimBLEAddress.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAddress.h b/src/NimBLEAddress.h index f357e38..3ec484b 100644 --- a/src/NimBLEAddress.h +++ b/src/NimBLEAddress.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertisedDevice.cpp b/src/NimBLEAdvertisedDevice.cpp index 71007ba..dc2127b 100644 --- a/src/NimBLEAdvertisedDevice.cpp +++ b/src/NimBLEAdvertisedDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertisedDevice.h b/src/NimBLEAdvertisedDevice.h index 4b7da39..dd9dccc 100644 --- a/src/NimBLEAdvertisedDevice.h +++ b/src/NimBLEAdvertisedDevice.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertisementData.cpp b/src/NimBLEAdvertisementData.cpp index 3474ecc..ed5152b 100644 --- a/src/NimBLEAdvertisementData.cpp +++ b/src/NimBLEAdvertisementData.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertisementData.h b/src/NimBLEAdvertisementData.h index 86f4750..9d8fe7e 100644 --- a/src/NimBLEAdvertisementData.h +++ b/src/NimBLEAdvertisementData.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertising.cpp b/src/NimBLEAdvertising.cpp index 5dd534e..8d2a892 100644 --- a/src/NimBLEAdvertising.cpp +++ b/src/NimBLEAdvertising.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertising.h b/src/NimBLEAdvertising.h index 217a5b7..2f2dd11 100644 --- a/src/NimBLEAdvertising.h +++ b/src/NimBLEAdvertising.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAttValue.cpp b/src/NimBLEAttValue.cpp index 5c29d8c..4550335 100644 --- a/src/NimBLEAttValue.cpp +++ b/src/NimBLEAttValue.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAttValue.h b/src/NimBLEAttValue.h index dd74287..3354fc5 100644 --- a/src/NimBLEAttValue.h +++ b/src/NimBLEAttValue.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAttribute.h b/src/NimBLEAttribute.h index f13a356..8fd7c77 100644 --- a/src/NimBLEAttribute.h +++ b/src/NimBLEAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEBeacon.cpp b/src/NimBLEBeacon.cpp index 20e4fc2..80ab6a0 100644 --- a/src/NimBLEBeacon.cpp +++ b/src/NimBLEBeacon.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEBeacon.h b/src/NimBLEBeacon.h index 618b011..6ca2a76 100644 --- a/src/NimBLEBeacon.h +++ b/src/NimBLEBeacon.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLECharacteristic.cpp b/src/NimBLECharacteristic.cpp index 43b9f74..569e00b 100644 --- a/src/NimBLECharacteristic.cpp +++ b/src/NimBLECharacteristic.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLECharacteristic.h b/src/NimBLECharacteristic.h index 01d34e4..3ada23a 100644 --- a/src/NimBLECharacteristic.h +++ b/src/NimBLECharacteristic.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEClient.cpp b/src/NimBLEClient.cpp index 301ef79..ef3c85d 100644 --- a/src/NimBLEClient.cpp +++ b/src/NimBLEClient.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEClient.h b/src/NimBLEClient.h index d193f7d..0406346 100644 --- a/src/NimBLEClient.h +++ b/src/NimBLEClient.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEConnInfo.h b/src/NimBLEConnInfo.h index 76959b8..c89b7df 100644 --- a/src/NimBLEConnInfo.h +++ b/src/NimBLEConnInfo.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEDescriptor.cpp b/src/NimBLEDescriptor.cpp index 5301a8b..cc1b405 100644 --- a/src/NimBLEDescriptor.cpp +++ b/src/NimBLEDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEDescriptor.h b/src/NimBLEDescriptor.h index b4bcd38..c194a5d 100644 --- a/src/NimBLEDescriptor.h +++ b/src/NimBLEDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEDevice.cpp b/src/NimBLEDevice.cpp index 05019cf..427ad3e 100644 --- a/src/NimBLEDevice.cpp +++ b/src/NimBLEDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEDevice.h b/src/NimBLEDevice.h index ad59767..5ec10c9 100644 --- a/src/NimBLEDevice.h +++ b/src/NimBLEDevice.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEEddystoneTLM.cpp b/src/NimBLEEddystoneTLM.cpp index d710810..3d39880 100644 --- a/src/NimBLEEddystoneTLM.cpp +++ b/src/NimBLEEddystoneTLM.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEEddystoneTLM.h b/src/NimBLEEddystoneTLM.h index 8e60a04..2881a89 100644 --- a/src/NimBLEEddystoneTLM.h +++ b/src/NimBLEEddystoneTLM.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEExtAdvertising.cpp b/src/NimBLEExtAdvertising.cpp index 16d5a9e..38c37d7 100644 --- a/src/NimBLEExtAdvertising.cpp +++ b/src/NimBLEExtAdvertising.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEExtAdvertising.h b/src/NimBLEExtAdvertising.h index 463eaa3..f5031eb 100644 --- a/src/NimBLEExtAdvertising.h +++ b/src/NimBLEExtAdvertising.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEHIDDevice.cpp b/src/NimBLEHIDDevice.cpp index d656521..38a11c3 100644 --- a/src/NimBLEHIDDevice.cpp +++ b/src/NimBLEHIDDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEHIDDevice.h b/src/NimBLEHIDDevice.h index 1494daf..50d3362 100644 --- a/src/NimBLEHIDDevice.h +++ b/src/NimBLEHIDDevice.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLELocalAttribute.h b/src/NimBLELocalAttribute.h index 6aafc43..09707d5 100644 --- a/src/NimBLELocalAttribute.h +++ b/src/NimBLELocalAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLELocalValueAttribute.h b/src/NimBLELocalValueAttribute.h index fed17ad..55b03fc 100644 --- a/src/NimBLELocalValueAttribute.h +++ b/src/NimBLELocalValueAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLELog.h b/src/NimBLELog.h index ec8a0f0..e3137ad 100644 --- a/src/NimBLELog.h +++ b/src/NimBLELog.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteCharacteristic.cpp b/src/NimBLERemoteCharacteristic.cpp index b994e1a..dc8e73a 100644 --- a/src/NimBLERemoteCharacteristic.cpp +++ b/src/NimBLERemoteCharacteristic.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteCharacteristic.h b/src/NimBLERemoteCharacteristic.h index 109d8d0..fd5749f 100644 --- a/src/NimBLERemoteCharacteristic.h +++ b/src/NimBLERemoteCharacteristic.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteDescriptor.cpp b/src/NimBLERemoteDescriptor.cpp index 14283fd..a56b91a 100644 --- a/src/NimBLERemoteDescriptor.cpp +++ b/src/NimBLERemoteDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteDescriptor.h b/src/NimBLERemoteDescriptor.h index 9d2a171..817033d 100644 --- a/src/NimBLERemoteDescriptor.h +++ b/src/NimBLERemoteDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteService.cpp b/src/NimBLERemoteService.cpp index c131af7..06fb91a 100644 --- a/src/NimBLERemoteService.cpp +++ b/src/NimBLERemoteService.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteService.h b/src/NimBLERemoteService.h index 8045788..fad35fb 100644 --- a/src/NimBLERemoteService.h +++ b/src/NimBLERemoteService.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteValueAttribute.cpp b/src/NimBLERemoteValueAttribute.cpp index d8bfd6b..1de2940 100644 --- a/src/NimBLERemoteValueAttribute.cpp +++ b/src/NimBLERemoteValueAttribute.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteValueAttribute.h b/src/NimBLERemoteValueAttribute.h index c3a20e0..b722c74 100644 --- a/src/NimBLERemoteValueAttribute.h +++ b/src/NimBLERemoteValueAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEScan.cpp b/src/NimBLEScan.cpp index 60e7db2..af0dd71 100644 --- a/src/NimBLEScan.cpp +++ b/src/NimBLEScan.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEScan.h b/src/NimBLEScan.h index 6194a5c..2546cdb 100644 --- a/src/NimBLEScan.h +++ b/src/NimBLEScan.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEServer.cpp b/src/NimBLEServer.cpp index 5b01a77..7e10ea2 100644 --- a/src/NimBLEServer.cpp +++ b/src/NimBLEServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEServer.h b/src/NimBLEServer.h index 2696995..4eb7962 100644 --- a/src/NimBLEServer.h +++ b/src/NimBLEServer.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEService.cpp b/src/NimBLEService.cpp index 49eef01..8304d1f 100644 --- a/src/NimBLEService.cpp +++ b/src/NimBLEService.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEService.h b/src/NimBLEService.h index 80e9dea..cbee352 100644 --- a/src/NimBLEService.h +++ b/src/NimBLEService.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEUUID.cpp b/src/NimBLEUUID.cpp index c947648..df31766 100644 --- a/src/NimBLEUUID.cpp +++ b/src/NimBLEUUID.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEUUID.h b/src/NimBLEUUID.h index 32f625c..708b34b 100644 --- a/src/NimBLEUUID.h +++ b/src/NimBLEUUID.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEUtils.cpp b/src/NimBLEUtils.cpp index 6e9f771..9b3db05 100644 --- a/src/NimBLEUtils.cpp +++ b/src/NimBLEUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEUtils.h b/src/NimBLEUtils.h index e56f568..fa9482d 100644 --- a/src/NimBLEUtils.h +++ b/src/NimBLEUtils.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License");