Skip to content

Commit

Permalink
bump module version to 4.2.0 (4200)
Browse files Browse the repository at this point in the history
  • Loading branch information
technobly committed Sep 22, 2023
1 parent eecda85 commit b4de440
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 5 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,27 @@
## 4.2.0

### ENHANCEMENTS

- [Cellular] Enables UPSV=1 low power mode for R510 when idle for >=9.2s [#2674](https://github.com/particle-iot/device-os/pull/2674)
- [services] add long long support to printf/scanf [#2694](https://github.com/particle-iot/device-os/pull/2694) [#2696](https://github.com/particle-iot/device-os/pull/2696)
- [wiring] Add 64-bit String conversions [#2693](https://github.com/particle-iot/device-os/pull/2693) [#2657](https://github.com/particle-iot/device-os/pull/2657)
- [wiring] json: 64-bit support [#2695](https://github.com/particle-iot/device-os/pull/2693) [#2657](https://github.com/particle-iot/device-os/pull/2695)

### BUGFIXES

- Fixes clean target for applications with large number of fils + P2 PSRAM size calculation issues [#2661](https://github.com/particle-iot/device-os/pull/2661)
- [gen3] hal: fixes the issue that UARTE RX may lose data [#2698](https://github.com/particle-iot/device-os/pull/2698)
- [quectel] Fixes ncp-client not waiting for modem ready on cold boot [#2700](https://github.com/particle-iot/device-os/pull/2700)

### INTERNAL

- [bootloader] remove nanopb dependency [#2607](https://github.com/particle-iot/device-os/pull/2607)
- test] resolve sleep20 test failures. [#2669](https://github.com/particle-iot/device-os/pull/2669)
- [nrf] Add Factory Reset Tests [#2662](https://github.com/particle-iot/device-os/pull/2662)
- Update the key used for validating the ServerMoved signature [#2688](https://github.com/particle-iot/device-os/pull/2688)
- [ci] fix macos builds [#2683](https://github.com/particle-iot/device-os/pull/2683)


## 4.1.0

### FEATURES
Expand Down
2 changes: 1 addition & 1 deletion build/release.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -o errexit -o pipefail -o noclobber -o nounset

VERSION=${VERSION:="4.1.0"}
VERSION=${VERSION:="4.2.0"}

function display_help ()
{
Expand Down
4 changes: 2 additions & 2 deletions build/version.mk
@@ -1,7 +1,7 @@
VERSION_STRING = 4.1.0
VERSION_STRING = 4.2.0

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

CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)
2 changes: 1 addition & 1 deletion modules/shared/system_module_version.mk
@@ -1,6 +1,6 @@
# Skip to next 100 every vx.N.x release (e.g. 11 for v0.6.2 to 100 for v0.7.0-rc.1),
# Bump by 1 for every prerelease or release with the same vx.N.* base.
COMMON_MODULE_VERSION ?= 4100
COMMON_MODULE_VERSION ?= 4200
SYSTEM_PART1_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)

RELEASE_080_MODULE_VERSION_BASE ?= 300
Expand Down
4 changes: 3 additions & 1 deletion system/inc/system_version.h
Expand Up @@ -196,7 +196,8 @@ extern "C" {
#define SYSTEM_VERSION_v401 SYSTEM_VERSION_DEFAULT(4, 0, 1)
#define SYSTEM_VERSION_v402 SYSTEM_VERSION_DEFAULT(4, 0, 2)
#define SYSTEM_VERSION_v410 SYSTEM_VERSION_DEFAULT(4, 1, 0)
#define SYSTEM_VERSION SYSTEM_VERSION_v410
#define SYSTEM_VERSION_v420 SYSTEM_VERSION_DEFAULT(4, 2, 0)
#define SYSTEM_VERSION SYSTEM_VERSION_v420

/**
* Previously we would set the least significant byte to 0 for the final release, but to make
Expand Down Expand Up @@ -357,6 +358,7 @@ extern "C" {
#define SYSTEM_VERSION_401
#define SYSTEM_VERSION_402
#define SYSTEM_VERSION_410
#define SYSTEM_VERSION_420

typedef struct __attribute__((packed)) SystemVersionInfo
{
Expand Down
1 change: 1 addition & 0 deletions system/system-versions.md
Expand Up @@ -162,6 +162,7 @@
| 1101 | 4005 | 4.0.1 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
| 1101 | 4006 | 4.0.2 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
| 1200 | 4100 | 4.1.0 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
| 1200 | 4200 | 4.2.0 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |


[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 b4de440

Please sign in to comment.