Skip to content

Commit

Permalink
Merge pull request #316 from ukBaz/release_v0.4.0
Browse files Browse the repository at this point in the history
Release v0.5.0
  • Loading branch information
ukBaz authored Jan 28, 2021
2 parents 7e4bf74 + d545df1 commit 55f7e2b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
10 changes: 6 additions & 4 deletions bluezero/observer.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def ble_16bit_match(uuid_16, srv_data):
"""
Utility method to test 16 bit UUID against Bluetooth SIG 128 bit UUID
used in service data
:param uuid_16: 16 Bit UUID value
:param srv_data:
:return:
Expand Down Expand Up @@ -179,10 +180,11 @@ def start_beacon_scan(cls,
beacon type is found.
All callbacks take one argument which is a named tuple with the fields
relevant for that format.
Eddystone URL = ['url', 'tx_pwr', 'rssi']
Eddystone UID = ['namespace', 'instance', 'tx_pwr', 'rssi']
iBeacon = ['UUID', 'major', 'minor', 'tx_pwr', 'rssi']
AltBeacon = ['UUID', 'major', 'minor', 'tx_pwr', 'rssi']
- Eddystone URL = ['url', 'tx_pwr', 'rssi']
- Eddystone UID = ['namespace', 'instance', 'tx_pwr', 'rssi']
- iBeacon = ['UUID', 'major', 'minor', 'tx_pwr', 'rssi']
- AltBeacon = ['UUID', 'major', 'minor', 'tx_pwr', 'rssi']
:param on_eddystone_url: Callback for Eddystone URL format
:param on_eddystone_uid: Callback for Eddystone UID format
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@

# General information about the project.
project = u'python-bluezero'
copyright = u'2019, Barry Byford, Mark Roberts'
copyright = u'2021, Barry Byford, Mark Roberts'
author = u'Barry Byford, Mark Roberts'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = u'0.4.0'
version = u'0.5.0'
# The full version, including alpha/beta/rc tags.
release = u'0.4.0'
release = u'0.5.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/developer_docs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ of installing for edit is as follows:
Release Checklist
=================

* Check Travis-tests are passing (run_local_tests.sh)
* Check tests are passing (run_local_tests.sh)
* Update version info (see `Update Version Info`_)
* Build and publish PyPI package (see `Build PyPI package`_)
* Check PyPI page for obvious errors
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.0
current_version = 0.5.0
tag = True
tag_name = v{new_version}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.4.0',
version='0.5.0',

description='Python library for Bluetooth Low Energy (BLE) on Linux',
long_description=long_description,
Expand Down

0 comments on commit 55f7e2b

Please sign in to comment.