Skip to content

Commit 381b538

Browse files
committed
bump module version for 3.2.0-rc.1 (3200)
1 parent 0eaab72 commit 381b538

File tree

6 files changed

+41
-5
lines changed

6 files changed

+41
-5
lines changed

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## 3.2.0-rc.1
2+
3+
### FEATURES
4+
5+
- [wiring] `acquireSerialXBuffer()` API support for UART [#2375](https://github.com/particle-iot/device-os/pull/2375)
6+
- [Boron / B SoM ] Support for SARA R510 [#2359](https://github.com/particle-iot/device-os/pull/2359) [#2365](https://github.com/particle-iot/device-os/pull/2365)
7+
- [Electron] Optional feature to use HSE/LSI as RTC clock source instead of LSE (external 32KHz XTAL) [#2354](https://github.com/particle-iot/device-os/pull/2354)
8+
- [Gen 3] BLE: Add ability to set and scan extended advertisement size (when using Coded PHY) [#2331](https://github.com/particle-iot/device-os/pull/2331)
9+
10+
### ENHANCEMENTS
11+
12+
- Enable GCC `-Wextra` when building Device OS to enable additional diagnostics provided by GCC. Fix issues uncovered [#2340](https://github.com/particle-iot/device-os/pull/2340)
13+
- Refactor system describe/info JSON generation to reduce size and remove invalid modules from it [#2347](https://github.com/particle-iot/device-os/pull/2347) [#2349](https://github.com/particle-iot/device-os/pull/2349)
14+
- [Boron / B SoM / R510] Add additional modem responsiveness check on warm boot to avoid triggering R510-specific initialization issue [#2373](https://github.com/particle-iot/device-os/pull/2373)
15+
16+
### BUGFIXES
17+
18+
- [Gen 3] BLE: fix unintialized `scan_phys` in default scan parameters, preventing scanning from working unless `BLE.setScanPhy()` is manually set [#2338](https://github.com/particle-iot/device-os/pull/2338) [#2345](https://github.com/particle-iot/device-os/pull/2345)
19+
- [Argon / Tracker] Avoid power leakage through ESP32 `ESPBOOT` pin [#2342](https://github.com/particle-iot/device-os/pull/2342)
20+
- Fix parsing of JSON strings with more than 127 tokens [#2348](https://github.com/particle-iot/device-os/pull/2348)
21+
- Clear module slots in DCT when preparing for an OTA update [#2346](https://github.com/particle-iot/device-os/pull/2346)
22+
- [Gen 3] Increase BLE operation timeout to ensure that BLE events are correctly handled and do not trigger an assertion [#2371](https://github.com/particle-iot/device-os/pull/2371)
23+
- [Argon] Fix occasional WiFI setup issue over BLE [#2372](https://github.com/particle-iot/device-os/pull/2372)
24+
- [Gen 3] Ensure that invalid modules are not presented to the cloud in System Describe message [#2374](https://github.com/particle-iot/device-os/pull/2374)
25+
- [Gen 3] BLE: Fix copy-constructor and assignment operator issues in wiring APIs [#2376](https://github.com/particle-iot/device-os/pull/2376)
26+
27+
### INTERNAL
28+
29+
- [Photon / P1] system part 2 size optimizations [#2349](https://github.com/particle-iot/device-os/pull/2349)
30+
- Fix `gcovr` installation on CI [#2361](https://github.com/particle-iot/device-os/pull/2361) [#2364](https://github.com/particle-iot/device-os/pull/2364)
31+
- [test] Increase cloud connection timeout to 9 min for on-device tests where applicable [#2369](https://github.com/particle-iot/device-os/pull/2369)
32+
- [test] Enable `wiring/ble_central_peripheral` and `wiring/ble_scanner_broadcaster` tests to be run under `device-os-test-runner` [#2376](https://github.com/particle-iot/device-os/pull/2376)
33+
134
## 3.1.0
235

336
### FEATURES

build/release.sh

+1-1
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="3.1.0"
4+
VERSION="3.2.0-rc.1"
55

66
function display_help ()
77
{

build/version.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
VERSION_STRING = 3.1.0
1+
VERSION_STRING = 3.2.0-rc.1
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 = 3103
5+
VERSION = 3200
66

77
CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)

modules/shared/system_module_version.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Skip to next 100 every v0.x.0 release (e.g. 108 for v0.6.2 to 200 for v0.7.0-rc.1)
22
# Bump by 1 for every prerelease or release with the same v0.x.* base.
3-
COMMON_MODULE_VERSION ?= 3103
3+
COMMON_MODULE_VERSION ?= 3200
44
SYSTEM_PART1_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)
55
SYSTEM_PART2_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)
66
SYSTEM_PART3_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)

system/inc/system_version.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ extern "C" {
183183
#define SYSTEM_VERSION_v310ALPHA2 SYSTEM_VERSION_ALPHA(3, 1, 0, 2)
184184
#define SYSTEM_VERSION_v310RC1 SYSTEM_VERSION_RC(3, 1, 0, 1)
185185
#define SYSTEM_VERSION_v310 SYSTEM_VERSION_DEFAULT(3, 1, 0)
186-
#define SYSTEM_VERSION SYSTEM_VERSION_v310
186+
#define SYSTEM_VERSION_v320RC1 SYSTEM_VERSION_RC(3, 2, 0, 1)
187+
#define SYSTEM_VERSION SYSTEM_VERSION_v320RC1
187188

188189
/**
189190
* Previously we would set the least significant byte to 0 for the final release, but to make
@@ -331,6 +332,7 @@ extern "C" {
331332
#define SYSTEM_VERSION_310ALPHA2
332333
#define SYSTEM_VERSION_310RC1
333334
#define SYSTEM_VERSION_310
335+
#define SYSTEM_VERSION_320RC1
334336

335337
typedef struct __attribute__((packed)) SystemVersionInfo
336338
{

system/system-versions.md

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@
149149
| 1100 | 3101 | 3.1.0-alpha.2 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
150150
| 1100 | 3102 | 3.1.0-rc.1 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
151151
| 1100 | 3103 | 3.1.0 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
152+
| 1100 | 3200 | 3.2.0-rc.1 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
152153

153154
[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.
154155

0 commit comments

Comments
 (0)