Skip to content

Commit b2eef86

Browse files
authored
Merge pull request #2 from OpenDisplay-org/release-please--branches--main
chore(main): release 0.2.0
2 parents 04e9fb3 + 53f0cb1 commit b2eef86

4 files changed

Lines changed: 19 additions & 3 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "0.2.0"
33
}

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/OpenDisplay-org/nrf-ota/compare/v0.1.0...v0.2.0) (2026-02-22)
4+
5+
6+
### Features
7+
8+
* **cli:** add --device flag for non-interactive device selection ([5246a9e](https://github.com/OpenDisplay-org/nrf-ota/commit/5246a9e14882752f4fe939ad6de21b077e42eee4))
9+
* **cli:** add --quiet flag to suppress all non-error output ([1c98563](https://github.com/OpenDisplay-org/nrf-ota/commit/1c9856353c4afa72c6942fe9f672bce1d4272033))
10+
* **cli:** add actionable recovery hints to error messages ([521eca0](https://github.com/OpenDisplay-org/nrf-ota/commit/521eca015845d5b9fb5e2b0c24717cb167469083))
11+
* **cli:** use live advertisement names in device list ([cb1da38](https://github.com/OpenDisplay-org/nrf-ota/commit/cb1da38f08e4ff68f63eaa9d1ec5691ce065a85c))
12+
* **dfu:** surface firmware filename and CRC in log output ([04e9fb3](https://github.com/OpenDisplay-org/nrf-ota/commit/04e9fb3ef39072c4c0b240f3ba0fc84843a1bd00))
13+
14+
15+
### Documentation
16+
17+
* **scan:** update find_dfu_target docstring to reflect use_bdaddr=True ([d1ccc9f](https://github.com/OpenDisplay-org/nrf-ota/commit/d1ccc9fc6e2837055aa334df356355b2bd271ee4))
18+
319
## 0.1.0 (2026-02-22)
420

521

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "nrf-ota"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
description = "Python package for OTA updating the bootloader on nrf chips"
99
readme = "README.md"
1010
license = "Apache-2.0"

src/nrf_ota/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
# transfers at PRN≥10 (status 0x06). PRN=8 is confirmed stable on macOS.
4545
_DEFAULT_PRN: int = 8 if sys.platform == "darwin" else 10
4646

47-
__version__ = "0.1.0"
47+
__version__ = "0.2.0"
4848

4949
__all__ = [
5050
"perform_dfu",

0 commit comments

Comments
 (0)