Skip to content

Commit bad0b4f

Browse files
committed
bump module version for 2.0.0-rc.4 (2007)
1 parent ccdacf4 commit bad0b4f

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 2.0.0-rc.4
2+
3+
### ENHANCEMENTS
4+
5+
- [Gen 3] Enable Network Diagnostics/Vitals [#2230](https://github.com/particle-iot/device-os/pull/2230)
6+
7+
### BUGFIXES
8+
9+
- [Gen 3] Fix a potential crash when using sleep with multiple pins specified as wake-up sources together with BLE [#2227](https://github.com/particle-iot/device-os/pull/2227)
10+
- [Electron] 2G Electrons with uBlox G350 should use `AT+CPWROFF` exclusively for powering off the modem [#2229](https://github.com/particle-iot/device-os/pull/2229)
11+
112
## 2.0.0-rc.3
213

314
### BUGFIXES

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="2.0.0-rc.3"
4+
VERSION="2.0.0-rc.4"
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 = 2.0.0-rc.3
1+
VERSION_STRING = 2.0.0-rc.4
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 = 2006
5+
VERSION = 2007
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 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 ?= 2006
3+
COMMON_MODULE_VERSION ?= 2007
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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ extern "C" {
162162
#define SYSTEM_VERSION_v200RC1 SYSTEM_VERSION_RC(2, 0, 0, 1)
163163
#define SYSTEM_VERSION_v200RC2 SYSTEM_VERSION_RC(2, 0, 0, 2)
164164
#define SYSTEM_VERSION_v200RC3 SYSTEM_VERSION_RC(2, 0, 0, 3)
165-
#define SYSTEM_VERSION SYSTEM_VERSION_v200RC3
165+
#define SYSTEM_VERSION_v200RC4 SYSTEM_VERSION_RC(2, 0, 0, 4)
166+
#define SYSTEM_VERSION SYSTEM_VERSION_v200RC4
166167

167168
/**
168169
* Previously we would set the least significant byte to 0 for the final release, but to make
@@ -289,6 +290,7 @@ extern "C" {
289290
#define SYSTEM_VERSION_200RC1
290291
#define SYSTEM_VERSION_200RC2
291292
#define SYSTEM_VERSION_200RC3
293+
#define SYSTEM_VERSION_200RC4
292294

293295
typedef struct __attribute__((packed)) SystemVersionInfo
294296
{

system/system-versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@
128128
| 1002 | 2004 | 2.0.0-rc.1 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM |
129129
| 1003 | 2005 | 2.0.0-rc.2 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM |
130130
| 1003 | 2006 | 2.0.0-rc.3 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
131+
| 1003 | 2007 | 2.0.0-rc.4 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
131132

132133
[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.
133134

0 commit comments

Comments
 (0)