From 1e9df296ce5e97e17fd0a178ff6b96ae222dae95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radim=20Karni=C5=A1?= Date: Wed, 25 Sep 2024 16:20:52 +0200 Subject: [PATCH] change: Update version to 4.8.1 --- CHANGELOG.md | 7 +++++++ esptool/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0c08fc869..f3d16e0b4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v4.8.1 (2024-09-25) + +### Bug Fixes + +- **esp32c2**: Add esp32c2 eco4 rom magic value +- **packaging**: Correctly exclude the unwanted sub/modules + ## v4.8.0 (2024-09-18) ### New Features diff --git a/esptool/__init__.py b/esptool/__init__.py index 688e559c7d..7f919bc3f4 100644 --- a/esptool/__init__.py +++ b/esptool/__init__.py @@ -28,7 +28,7 @@ "write_mem", ] -__version__ = "4.8.0" +__version__ = "4.8.1" import argparse import inspect diff --git a/pyproject.toml b/pyproject.toml index f910525521..96eb71a059 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,7 @@ version = {attr = "esptool.__init__.__version__"} [tool.commitizen] - version = "4.8.0" + version = "4.8.1" update_changelog_on_bump = true tag_format = "v$version" changelog_start_rev = "v4.2.1"