Skip to content

Commit

Permalink
release v0.13.1
Browse files Browse the repository at this point in the history
See CHANGELOG for details.

Signed-off-by: Mike Szczys <[email protected]>
  • Loading branch information
szczys committed May 31, 2024
1 parent f5d9268 commit 6b40c73
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ 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).

## [0.13.1] 2024-05-31

### Fixed:

- Infinite loop in OTA manifest observation retry logic that occurred
when retries were exhausted.
- Documentation: update links to Stream service

### Changed

- Registering an OTA manifest observation will be retried until
successful, with a delay that doubles after each unsuccessful attempt.
Use CONFIG_GOLIOTH_FW_OBSERVATION_RETRY_MAX_DELAY_MS to configure the
maximum delay (defaults to 5 minutes).

## [0.13.0] 2024-05-28

### Breaking Changes:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ API documentation: https://firmware-sdk-docs.golioth.io/
This repo uses git submodules, so you will need to clone with the `--recursive` option:

```sh
git clone --recursive https://github.com/golioth/golioth-firmware-sdk.git -b v0.13.0
git clone --recursive https://github.com/golioth/golioth-firmware-sdk.git -b v0.13.1
```

Or, if you've already cloned but forgot the `--recursive`, you can update and
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.13.0
0.13.1
4 changes: 2 additions & 2 deletions examples/zephyr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Execute this command to download this repository together with all
dependencies:

```console
west init -m https://github.com/golioth/golioth-firmware-sdk.git --mr v0.13.0 --mf west-zephyr.yml
west init -m https://github.com/golioth/golioth-firmware-sdk.git --mr v0.13.1 --mf west-zephyr.yml
west update
cd modules/lib/golioth-firmware-sdk && git submodule update --init --recursive
```
Expand All @@ -42,7 +42,7 @@ Execute this command to download this repository together with all
dependencies:

```console
west init -m https://github.com/golioth/golioth-firmware-sdk.git --mr v0.13.0 --mf west-ncs.yml
west init -m https://github.com/golioth/golioth-firmware-sdk.git --mr v0.13.1 --mf west-ncs.yml
west update
cd modules/lib/golioth-firmware-sdk && git submodule update --init --recursive
```
Expand Down

0 comments on commit 6b40c73

Please sign in to comment.