Skip to content

Commit 582a069

Browse files
committed
esptool v2.0 final release
1 parent 0228f57 commit 582a069

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
include README.md
22
include LICENSE
3+
# sdist includes test/test*.py by default, but esptool.py tests
4+
# are so far only intended to run from the git repo itself
5+
exclude test/*.py

esptool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import zlib
3131
import shlex
3232

33-
__version__ = "2.0-beta3"
33+
__version__ = "2.0"
3434

3535
MAX_UINT32 = 0xffffffff
3636
MAX_UINT24 = 0xffffff

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def find_version(*file_paths):
2929
==========
3030
esptool.py
3131
==========
32-
A command line utility to communicate with the ROM bootloader in Espressif ESP8266 WiFi microcontroller.
32+
A command line utility to communicate with the ROM bootloader in Espressif ESP8266 & ESP32 microcontrollers.
3333
3434
Allows flashing firmware, reading back firmware, querying chip parameters, etc.
3535
@@ -44,6 +44,8 @@ def find_version(*file_paths):
4444
4545
Since version 1.3, esptool supports both Python 2.7 and Python 3.4 or newer.
4646
47+
Since version 2.0, esptool supports both ESP8266 & ESP32.
48+
4749
Usage
4850
-----
4951
@@ -77,7 +79,7 @@ def find_version(*file_paths):
7779
name='esptool',
7880
py_modules=['esptool', 'espsecure', 'espefuse'],
7981
version=find_version('esptool.py'),
80-
description='A utility to communicate with the ROM bootloader in Espressif ESP8266.',
82+
description='A serial utility to communicate & flash code to Espressif ESP8266 & ESP32 chips.',
8183
long_description=long_description,
8284
url='https://github.com/espressif/esptool',
8385
author='Fredrik Ahlberg (themadinventor) & Angus Gratton (projectgus)',

0 commit comments

Comments
 (0)