Skip to content

Commit b4de440

Browse files
committed
bump module version to 4.2.0 (4200)
1 parent eecda85 commit b4de440

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 4.2.0
2+
3+
### ENHANCEMENTS
4+
5+
- [Cellular] Enables UPSV=1 low power mode for R510 when idle for >=9.2s [#2674](https://github.com/particle-iot/device-os/pull/2674)
6+
- [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)
7+
- [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)
8+
- [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)
9+
10+
### BUGFIXES
11+
12+
- 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)
13+
- [gen3] hal: fixes the issue that UARTE RX may lose data [#2698](https://github.com/particle-iot/device-os/pull/2698)
14+
- [quectel] Fixes ncp-client not waiting for modem ready on cold boot [#2700](https://github.com/particle-iot/device-os/pull/2700)
15+
16+
### INTERNAL
17+
18+
- [bootloader] remove nanopb dependency [#2607](https://github.com/particle-iot/device-os/pull/2607)
19+
- test] resolve sleep20 test failures. [#2669](https://github.com/particle-iot/device-os/pull/2669)
20+
- [nrf] Add Factory Reset Tests [#2662](https://github.com/particle-iot/device-os/pull/2662)
21+
- Update the key used for validating the ServerMoved signature [#2688](https://github.com/particle-iot/device-os/pull/2688)
22+
- [ci] fix macos builds [#2683](https://github.com/particle-iot/device-os/pull/2683)
23+
24+
125
## 4.1.0
226

327
### FEATURES

build/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -o errexit -o pipefail -o noclobber -o nounset
33

4-
VERSION=${VERSION:="4.1.0"}
4+
VERSION=${VERSION:="4.2.0"}
55

66
function display_help ()
77
{

build/version.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
VERSION_STRING = 4.1.0
1+
VERSION_STRING = 4.2.0
22

33
# PRODUCT_FIRMWARE_VERSION reported by default
44
# FIXME: Unclear if this is used, PRODUCT_FIRMWARE_VERSION defaults to 65535 every release
5-
VERSION = 4100
5+
VERSION = 4200
66

77
CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)

modules/shared/system_module_version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Skip to next 100 every vx.N.x release (e.g. 11 for v0.6.2 to 100 for v0.7.0-rc.1),
22
# Bump by 1 for every prerelease or release with the same vx.N.* base.
3-
COMMON_MODULE_VERSION ?= 4100
3+
COMMON_MODULE_VERSION ?= 4200
44
SYSTEM_PART1_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)
55

66
RELEASE_080_MODULE_VERSION_BASE ?= 300

system/inc/system_version.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ extern "C" {
196196
#define SYSTEM_VERSION_v401 SYSTEM_VERSION_DEFAULT(4, 0, 1)
197197
#define SYSTEM_VERSION_v402 SYSTEM_VERSION_DEFAULT(4, 0, 2)
198198
#define SYSTEM_VERSION_v410 SYSTEM_VERSION_DEFAULT(4, 1, 0)
199-
#define SYSTEM_VERSION SYSTEM_VERSION_v410
199+
#define SYSTEM_VERSION_v420 SYSTEM_VERSION_DEFAULT(4, 2, 0)
200+
#define SYSTEM_VERSION SYSTEM_VERSION_v420
200201

201202
/**
202203
* Previously we would set the least significant byte to 0 for the final release, but to make
@@ -357,6 +358,7 @@ extern "C" {
357358
#define SYSTEM_VERSION_401
358359
#define SYSTEM_VERSION_402
359360
#define SYSTEM_VERSION_410
361+
#define SYSTEM_VERSION_420
360362

361363
typedef struct __attribute__((packed)) SystemVersionInfo
362364
{

system/system-versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@
162162
| 1101 | 4005 | 4.0.1 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
163163
| 1101 | 4006 | 4.0.2 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
164164
| 1200 | 4100 | 4.1.0 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
165+
| 1200 | 4200 | 4.2.0 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
165166

166167

167168
[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.

0 commit comments

Comments
 (0)