Skip to content

Commit 38d4581

Browse files
committed
bump module version to 4.0.0-alpha.2 (4001)
1 parent ecd8bef commit 38d4581

File tree

7 files changed

+29
-8
lines changed

7 files changed

+29
-8
lines changed

.buildpackrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export BUILDPACK_VARIATION=manifest
1515
export RELEASE_PLATFORMS=( )
1616

1717
# Platforms for which this firmware is considered experimental
18-
export PRERELEASE_PLATFORMS=( argon boron bsom b5som tracker )
18+
export PRERELEASE_PLATFORMS=( argon boron bsom b5som tracker esomx )
1919
# Note: a single platform should be only in release or prerelease list. If
2020
# added to both it will be considered a prerelease
2121

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 4.0.0-alpha.2
2+
3+
> ## :warning: Please note this is in internal release, do not use on production devices!
4+
5+
### FEATURES
6+
- [esomx] Adds support for new platform esomx [#2443](https://github.com/particle-iot/device-os/pull/2443) [#2459](https://github.com/particle-iot/device-os/pull/2459)
7+
- [E404X] Determine flash part at runtime [#2456](https://github.com/particle-iot/device-os/pull/2456)
8+
- [gen3][quectel] Adds support for BG95-M1, BG95-MF, BG77, and EG91-NAX [#2458](https://github.com/particle-iot/device-os/pull/2458)
9+
10+
### BUGFIXES
11+
- [gen3] hal: fix power leak on Boron [#2452](https://github.com/particle-iot/device-os/pull/2452)
12+
13+
### INTERNAL
14+
15+
- [workbench] update-device-os-workbench-manifest-json [#2457](https://github.com/particle-iot/device-os/pull/2457)
16+
- [ci] test-build-system-tune-timeouts [#2455](https://github.com/particle-iot/device-os/pull/2455)
17+
118
## 4.0.0-alpha.1
219

320
> ## :warning: Please note this is in internal release, do not use on production devices!

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.0.0-alpha.1"}
4+
VERSION=${VERSION:="4.0.0-alpha.2"}
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.0.0-alpha.1
1+
VERSION_STRING = 4.0.0-alpha.2
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 = 4000
5+
VERSION = 4001
66

77
CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)

modules/shared/system_module_version.mk

Lines changed: 3 additions & 3 deletions
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 ?= 4000
3+
COMMON_MODULE_VERSION ?= 4001
44
SYSTEM_PART1_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)
55

66
RELEASE_080_MODULE_VERSION_BASE ?= 300
@@ -14,13 +14,13 @@ USER_PART_MODULE_VERSION ?= 6
1414
# Skip to next 100 every vx.N.x release (e.g. 11 for v0.6.2 to 100 for v0.7.0-rc.1),
1515
# but only if the bootloader has changed since the last vx.N.x release.
1616
# Bump by 1 for every updated bootloader image for a release with the same vx.N.* base.
17-
BOOTLOADER_VERSION ?= 1100
17+
BOOTLOADER_VERSION ?= 1101
1818

1919
# The version of the bootloader that the system firmware requires
2020
# NOTE: this will force the device into safe mode until this dependency is met, which is why
2121
# this version usually lags behind the current bootloader version, to avoid non-mandatory updates.
2222
ifeq ($(PLATFORM_GEN),3)
23-
BOOTLOADER_DEPENDENCY = 1100
23+
BOOTLOADER_DEPENDENCY = 1101
2424
else
2525
# Some sensible default
2626
BOOTLOADER_DEPENDENCY = 0

system/inc/system_version.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ extern "C" {
189189
#define SYSTEM_VERSION_v330RC1 SYSTEM_VERSION_RC(3, 3, 0, 1)
190190
#define SYSTEM_VERSION_v330 SYSTEM_VERSION_DEFAULT(3, 3, 0)
191191
#define SYSTEM_VERSION_v400ALPHA1 SYSTEM_VERSION_ALPHA(4, 0, 0, 1)
192-
#define SYSTEM_VERSION SYSTEM_VERSION_v400ALPHA1
192+
#define SYSTEM_VERSION_v400ALPHA2 SYSTEM_VERSION_ALPHA(4, 0, 0, 2)
193+
#define SYSTEM_VERSION SYSTEM_VERSION_v400ALPHA2
193194

194195
/**
195196
* Previously we would set the least significant byte to 0 for the final release, but to make
@@ -343,6 +344,7 @@ extern "C" {
343344
#define SYSTEM_VERSION_330RC1
344345
#define SYSTEM_VERSION_330
345346
#define SYSTEM_VERSION_400ALPHA1
347+
#define SYSTEM_VERSION_400ALPHA2
346348

347349
typedef struct __attribute__((packed)) SystemVersionInfo
348350
{

system/system-versions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,8 @@
155155
| 1100 | 3300 | 3.3.0-rc.1 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
156156
| 1100 | 3301 | 3.3.0 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
157157
| 1100 | 4000 | 4.0.0-alpha.1 | Argon, Boron, B SoM, B5 SoM, Tracker |
158+
| 1101 | 4001 | 4.0.0-alpha.2 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
159+
158160

159161
[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.
160162

0 commit comments

Comments
 (0)