Skip to content

Commit

Permalink
Merge pull request #114 from ThomasGerstenberg/v0.4.0
Browse files Browse the repository at this point in the history
Update docs and rev version to v0.4.0
  • Loading branch information
ThomasGerstenberg authored May 26, 2022
2 parents 11588ab + ca161fe commit 7b35ad2
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 5 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ Below lists the supported BLE features and ones that are on the roadmap to imple
- Coded PHY not supported, only 1 and 2 Mbps PHYs
- [X] Scanning
- [X] Documentation
- [ ] RSSI (#97)
- RSSI is currently only available during scanning, not during active connection
- [X] RSSI
- [X] Transmit Power
- [X] Advertising channel selection
- [X] SMP
Expand Down
27 changes: 27 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
Changelog
=========

v0.4.0
------

v0.4.0 introduces some new features and fixes a couple of issues.
Full list of issues and PRs for this release can be found here: `0.4.0 Milestone`_

**Highlights**

- Adds support for reading RSSI of an active connection, plus example usage of API

- Adds Event+Waitable for Connection Parameter Update procedures

- Additionally adds support for accepting/rejecting update requests as a central

- Adds support for setting the device's transmit power

- Adds support for setting advertising channel masks

**Fixes**

- Fixes issues seen when performing certain pairing routines on linux

- Fixes for misc. advertising corner cases

- Fixes an issue with ``BasicGlucoseDatabase`` introduced in the python 3 migration


v0.3.6
------
Expand Down Expand Up @@ -247,6 +273,7 @@ public API should be mostly unchanged except for the noted changes below.

- Added ``AdvertisingData.to_bytes()`` to retrieve the data packet that will be advertised over the air

.. _0.4.0 Milestone: https://github.com/ThomasGerstenberg/blatann/milestone/7?closed=1
.. _Event callback example: https://github.com/ThomasGerstenberg/blatann/blob/1f85c68cf6db84ba731a55d3d22b8c2eb0d2779b/tests/integrated/test_advertising_duration.py#L48
.. _ScanFinishedWaitable example: https://github.com/ThomasGerstenberg/blatann/blob/1f85c68cf6db84ba731a55d3d22b8c2eb0d2779b/blatann/examples/scanner.py#L20
.. _Peripheral Descriptor Example: https://github.com/ThomasGerstenberg/blatann/blob/master/blatann/examples/peripheral_descriptors.py
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
author = u'Thomas Gerstenberg'

# The short X.Y version
version = u'v0.3.x'
version = u'v0.4.x'
# The full version, including alpha/beta/rc tags
release = u'v0.3.6'
release = u'v0.4.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from os import path


VERSION = "v0.3.6"
VERSION = "v0.4.0"

HERE = path.dirname(__file__)
with open(path.join(HERE, "README.md"), "r", encoding="utf-8") as f:
Expand Down

0 comments on commit 7b35ad2

Please sign in to comment.