Skip to content

Commit 8add6e8

Browse files
committed
Release v1.0.1
1 parent 10acb00 commit 8add6e8

File tree

2 files changed

+33
-8
lines changed

2 files changed

+33
-8
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [1.0.1] - 2020-09-02
6+
7+
### Added
8+
9+
- Empty `NimBLEAddress` constructor: `NimBLEAddress()` produces an address of 00:00:00:00:00:00 type 0.
10+
- Documentation of the difference of NimBLEAddress::getNative vs the original bluedroid library.
11+
12+
### Changed
13+
14+
- notify_callback typedef is now defined as std::function to enable the use of std::bind to call a class member function.
15+
16+
### Fixed
17+
18+
- Fix advertising start delay when first called.
19+
20+
21+
## [1.0.0] - 2020-08-22
22+
23+
First stable release.
24+
25+
All the original library functionality is complete and many extras added with full documentation.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[Latest release ![Release Version](https://img.shields.io/github/release/h2zero/esp-nimble-cpp.svg?style=plastic)
2+
![Release Date](https://img.shields.io/github/release-date/h2zero/esp-nimble-cpp.svg?style=plastic)](https://github.com/h2zero/esp-nimble-cpp/releases/latest/)
3+
<br/>
4+
15
# esp-nimble-cpp
26

37
NimBLE CPP library for use with ESP32 that attempts to maintain compatibility with the [nkolban cpp_uitls BLE API](https://github.com/nkolban/esp32-snippets/tree/master/cpp_utils).
@@ -18,12 +22,6 @@ NimBLE is a completely open source Bluetooth Low Energy stack produced by [Apach
1822
It is more suited to resource constrained devices than bluedroid and has now been ported to the ESP32 by Espressif.
1923
<br/>
2024

21-
# Development Status
22-
[Latest release ![Release Version](https://img.shields.io/github/release/h2zero/esp-nimble-cpp.svg?style=plastic)
23-
![Release Date](https://img.shields.io/github/release-date/h2zero/esp-nimble-cpp.svg?style=plastic)](https://github.com/h2zero/esp-nimble-cpp/releases/latest/)
24-
![Downloads](https://img.shields.io/github/downloads/h2zero/esp-nimble-cpp/latest/total.svg?style=plastic)
25-
<br/>
26-
2725
# Installation
2826

2927
### ESP-IDF v4.0+
@@ -64,6 +62,8 @@ Also see [Improvements_and_updates](docs/Improvements_and_updates.md) for inform
6462
<br/>
6563

6664
# Todo
67-
1. Implement random addresses.
68-
2. Add BLE Mesh code.
65+
- Improve host reset handler
66+
- Implement random address handling
67+
- Implement bond management
68+
- Add Bluetooth Mesh
6969
<br/>

0 commit comments

Comments
 (0)