Skip to content

Commit ceaf4d7

Browse files
authored
Merge Carglglz/develop for upydevice 0.3.6 release
Merge develop branch for upydevice 0.3.6 release
2 parents 6ed8628 + 9b180d1 commit ceaf4d7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
66

7-
## [0.3.6] Unreleased Github Repo [develop]
7+
## [0.3.7] Unreleased Github Repo [develop]
8+
## [0.3.6] - 2022-03-25
9+
### Fix
10+
- fixed missing dependencies in `setup.py` (@BradenM)
811
## [0.3.5] - 2022-03-15
912
### Fix
1013
- reassign ip to hostname if hostname is not None for disconnect method

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def readme():
99

1010

1111
setup(name='upydevice',
12-
version='0.3.5',
12+
version='0.3.6',
1313
description='Python library to interface with wireless/serial MicroPython devices',
1414
long_description=readme(),
1515
long_description_content_type='text/markdown',
@@ -39,4 +39,5 @@ def readme():
3939
scripts=[],
4040
include_package_data=True,
4141
install_requires=['pyserial', 'dill', 'unsync',
42-
'bleak>=0.12.1', 'bleak_sigspec>=0.0.4', 'netifaces~=0.11.0', 'python-nmap~=0.7.1'])
42+
'bleak>=0.12.1', 'bleak_sigspec>=0.0.4', 'netifaces~=0.11.0',
43+
'python-nmap~=0.7.1'])

upydevice/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@
148148

149149
from .upydevice import *
150150
name = 'upydevice'
151-
__version__ = '0.3.5'
151+
__version__ = '0.3.6'

0 commit comments

Comments
 (0)