diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3ffdb64..98eab45 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.1-beta.1" + ".": "2.1.0-beta.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f95fb02..14230e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.1.0-beta.1](https://github.com/damacus/robovac/compare/v2.0.1-beta.1...v2.1.0-beta.1) (2026-02-11) + + +### Features + +* **vaccum:** add support for Eufy X10 PRO (alias T2351) ([#281](https://github.com/damacus/robovac/issues/281)) ([bc9ecaf](https://github.com/damacus/robovac/commit/bc9ecaf162b4a3db6b26f47b3d9c62ce254e2a07)) + + +### Bug Fixes + +* add boolean START_PAUSE support and status mappings for 10 vacuum models ([#338](https://github.com/damacus/robovac/issues/338)) ([8ffef5e](https://github.com/damacus/robovac/commit/8ffef5e65f80c98d0da6fd4b9ce4cf79d4593a14)) +* resolve issue [#300](https://github.com/damacus/robovac/issues/300) - X8 'Pure' fan speed not setting ([#315](https://github.com/damacus/robovac/issues/315)) ([b931726](https://github.com/damacus/robovac/commit/b93172628b40931c5dd2e7797a878707df5bce0c)) + ## [2.0.1-beta.1](https://github.com/damacus/robovac/compare/v2.0.0-beta.1...v2.0.1-beta.1) (2026-01-06) diff --git a/custom_components/robovac/manifest.json b/custom_components/robovac/manifest.json index 7326631..20a8d93 100644 --- a/custom_components/robovac/manifest.json +++ b/custom_components/robovac/manifest.json @@ -11,5 +11,5 @@ "iot_class": "local_polling", "issue_tracker": "https://github.com/damacus/robovac/issues", "requirements": [], - "version": "2.0.1-beta.1" + "version": "2.1.0-beta.1" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 3b457d0..ace9af3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "robovac" -version = "2.0.1-beta.1" +version = "2.1.0-beta.1" description = "Eufy RoboVac integration for Home Assistant" readme = "README.md" requires-python = ">=3.13.0"