diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e96a05..7a5da87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.0] - 2025-10-13 + +### Changed + +- Merge changes from [`golioth/reference-design-template@template_v2.8.0`](https://github.com/golioth/reference-design-template/tree/template_v2.8.0). + +### Removed + +- Aludel Mini is EOL and no longer supported + ## [1.1.0] - 2025-05-12 ### Changed diff --git a/README.md b/README.md index 963febf..29454cb 100644 --- a/README.md +++ b/README.md @@ -217,7 +217,10 @@ version number than what is currently running on the device. 2. Upload the `build/app/zephyr/zephyr.signed.bin` file as a Package for your Golioth project. - - Use `main` as the package name. + - Use either `nrf9160dk` or `aludel_elixir` as the package name, + depending on which board the update file was built for. (These + package names were configured in this repository's board `.conf` + files.) Use `main` as the package name. - Use the same version number from step 1. 3. Create a Cohort and add your device to it. diff --git a/VERSION b/VERSION index 0891064..73b4e76 100644 --- a/VERSION +++ b/VERSION @@ -1,5 +1,5 @@ VERSION_MAJOR = 1 -VERSION_MINOR = 1 +VERSION_MINOR = 2 PATCHLEVEL = 0 VERSION_TWEAK = 0 EXTRAVERSION = diff --git a/boards/aludel_elixir_ns.conf b/boards/aludel_elixir_ns.conf index 5cbf85f..ee45bad 100644 --- a/boards/aludel_elixir_ns.conf +++ b/boards/aludel_elixir_ns.conf @@ -6,3 +6,6 @@ CONFIG_ALUDEL_BATTERY_MONITOR=y # Turn on regulator to power click headers CONFIG_REGULATOR=y + +# Use a unique package name to use with Packages/Cohorts/Deployments +CONFIG_GOLIOTH_FW_UPDATE_PACKAGE_NAME="aludel_elixir" diff --git a/boards/nrf9160dk_nrf9160_ns.conf b/boards/nrf9160dk_nrf9160_ns.conf new file mode 100644 index 0000000..ad711b7 --- /dev/null +++ b/boards/nrf9160dk_nrf9160_ns.conf @@ -0,0 +1,2 @@ +# Use a unique package name to use with Packages/Cohorts/Deployments +CONFIG_GOLIOTH_FW_UPDATE_PACKAGE_NAME="nrf9160dk"