Skip to content

Commit

Permalink
bump module version to 5.3.2 (5302)
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-brust committed May 16, 2023
1 parent 46b4c3a commit aa881bd
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 5.3.2

### ENHANCEMENTS
- [rtl872x] SPI and GPIO HAL changes to support Neopixel [#2654](https://github.com/particle-iot/device-os/pull/2654)
- [rtl872x] Implement WiFi.selectAntenna [#2651](https://github.com/particle-iot/device-os/pull/2651)

### BUGFIXES
- [nRF52] UART sleep/wakeup [#2652](https://github.com/particle-iot/device-os/pull/2652)
- [rtl872x] Fix Wifi stack issues [#2649](https://github.com/particle-iot/device-os/pull/2649)
- [rtl872x] BLE scanning panic [#2650](https://github.com/particle-iot/device-os/pull/2650)

### INTERNAL
- [rtl872x] Fix burnin GPIO and SPI Flash tests for photon 2 [#2653](https://github.com/particle-iot/device-os/pull/2653)

## 5.3.1

### ENHANCEMENTS
Expand Down
2 changes: 1 addition & 1 deletion build/release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -o errexit -o pipefail -o noclobber -o nounset

VERSION=${VERSION:="5.3.1"}
VERSION=${VERSION:="5.3.2"}

function display_help ()
{
Expand Down
4 changes: 2 additions & 2 deletions build/version.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION_STRING = 5.3.1
VERSION_STRING = 5.3.2

# PRODUCT_FIRMWARE_VERSION reported by default
# FIXME: Unclear if this is used, PRODUCT_FIRMWARE_VERSION defaults to 65535 every release
VERSION = 5301
VERSION = 5302

CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)
6 changes: 3 additions & 3 deletions modules/shared/system_module_version.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Skip to next 100 every v0.x.0 release (e.g. 108 for v0.6.2 to 200 for v0.7.0-rc.1)
# Bump by 1 for every prerelease or release with the same v0.x.* base.
COMMON_MODULE_VERSION ?= 5301
COMMON_MODULE_VERSION ?= 5302
SYSTEM_PART1_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)

RELEASE_080_MODULE_VERSION_BASE ?= 300
Expand All @@ -14,7 +14,7 @@ USER_PART_MODULE_VERSION ?= 6
# Skip to next 100 every v0.x.0 release (e.g. 11 for v0.6.2 to 100 for v0.7.0-rc.1),
# but only if the bootloader has changed since the last v0.x.0 release.
# Bump by 1 for every updated bootloader image for a release with the same v0.x.* base.
BOOTLOADER_VERSION ?= 2101
BOOTLOADER_VERSION ?= 2102

ifeq ($(PLATFORM_MCU),rtl872x)
PREBOOTLOADER_MBR_VERSION ?= 2
Expand All @@ -26,7 +26,7 @@ endif
# this version usually lags behind the current bootloader version, to avoid non-mandatory updates.
ifeq ($(PLATFORM_GEN),3)
ifeq ($(PLATFORM_MCU),rtl872x)
BOOTLOADER_DEPENDENCY = 2101
BOOTLOADER_DEPENDENCY = 2102
else # ifeq ($(PLATFORM_MCU),rtl872x)
BOOTLOADER_DEPENDENCY = 2002
endif # ifeq ($(PLATFORM_GEN),3)
Expand Down
4 changes: 3 additions & 1 deletion system/inc/system_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ extern "C" {
#define SYSTEM_VERSION_v520 SYSTEM_VERSION_DEFAULT(5, 2, 0)
#define SYSTEM_VERSION_v530 SYSTEM_VERSION_DEFAULT(5, 3, 0)
#define SYSTEM_VERSION_v531 SYSTEM_VERSION_DEFAULT(5, 3, 1)
#define SYSTEM_VERSION SYSTEM_VERSION_v531
#define SYSTEM_VERSION_v532 SYSTEM_VERSION_DEFAULT(5, 3, 2)
#define SYSTEM_VERSION SYSTEM_VERSION_v532

/**
* Previously we would set the least significant byte to 0 for the final release, but to make
Expand Down Expand Up @@ -373,6 +374,7 @@ extern "C" {
#define SYSTEM_VERSION_520
#define SYSTEM_VERSION_530
#define SYSTEM_VERSION_531
#define SYSTEM_VERSION_532

typedef struct __attribute__((packed)) SystemVersionInfo
{
Expand Down
1 change: 1 addition & 0 deletions system/system-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@
| 2002 | 5200 | 5.2.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, P2 |
| 2100 | 5300 | 5.3.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, P2 |
| 2101 | 5301 | 5.3.1 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, P2 |
| 2102 | 5302 | 5.3.2 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, P2 |

[1] For 0.8.0-rc.1, The v101 bootloader was also released in the Github releases as v200. Thus the next released bootloader in the 0.8.x line should be v201. As of 4/5/2018: 22 device had v200 bootloaders.

Expand Down

0 comments on commit aa881bd

Please sign in to comment.