From 63d64b7983b14f7a2ea20f1f5ff36ec695bc124e Mon Sep 17 00:00:00 2001 From: Matthew Wall Date: Tue, 11 Jan 2022 19:07:45 -0500 Subject: [PATCH] bump version for release --- bin/user/sdr.py | 2 +- changelog | 3 +++ install.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/user/sdr.py b/bin/user/sdr.py index 5f7f073..377c23e 100644 --- a/bin/user/sdr.py +++ b/bin/user/sdr.py @@ -140,7 +140,7 @@ def logerr(msg): logmsg(syslog.LOG_ERR, msg) DRIVER_NAME = 'SDR' -DRIVER_VERSION = '0.85' +DRIVER_VERSION = '0.86' # The default command requests json output from every decoder # Use the -R option to indicate specific decoders diff --git a/changelog b/changelog index b80d985..d5d04e5 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,6 @@ +0.86 11jan2021 +* fixed typo in factor for THPacket (thanks gjr80) + 0.85 30dec2021 * fixed shutdown - use is_alive instead of isAlive to keep python 3.9 happy * eliminate stderr memory leak diff --git a/install.py b/install.py index bd0470f..f0f0d39 100644 --- a/install.py +++ b/install.py @@ -10,7 +10,7 @@ def loader(): class SDRInstaller(ExtensionInstaller): def __init__(self): super(SDRInstaller, self).__init__( - version="0.85", + version="0.86", name='sdr', description='Capture data from rtl_433', author="Matthew Wall",