diff --git a/errno/errno.py b/errno/errno.py index cd171b3e..7b7935ef 100644 --- a/errno/errno.py +++ b/errno/errno.py @@ -33,5 +33,6 @@ EPIPE = 32 # Broken pipe EDOM = 33 # Math argument out of domain of func ERANGE = 34 # Math result not representable EAFNOSUPPORT = 97 # Address family not supported by protocol +ECONNRESET = 104 # Connection timed out ETIMEDOUT = 110 # Connection timed out EINPROGRESS = 115 # Operation now in progress diff --git a/errno/metadata.txt b/errno/metadata.txt index 2254c557..c1486928 100644 --- a/errno/metadata.txt +++ b/errno/metadata.txt @@ -1,3 +1,3 @@ srctype = micropython-lib type = module -version = 0.1.2 +version = 0.1.3 diff --git a/errno/setup.py b/errno/setup.py index b502cc8f..78b1c1ba 100644 --- a/errno/setup.py +++ b/errno/setup.py @@ -6,7 +6,7 @@ from setuptools import setup setup(name='micropython-errno', - version='0.1.2', + version='0.1.3', description='errno module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython/issues/405',