Skip to content

Commit 7e5a77e

Browse files
keeramisavtolstoy
authored andcommitted
bump module version for 2.3.0-rc.1 (2300)
1 parent d33b4a3 commit 7e5a77e

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.3.0-rc.1
2+
3+
### FEATURES
4+
5+
- [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)
6+
- [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)
7+
8+
### INTERNAL
9+
10+
- Fix gcov installation [#2365](https://github.com/particle-iot/device-os/pull/2365)
11+
112
## 2.2.0
213

314
### 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="2.2.0"
4+
VERSION="2.3.0-rc.1"
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.2.0
1+
VERSION_STRING = 2.3.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 = 2202
5+
VERSION = 2300
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 ?= 2202
3+
COMMON_MODULE_VERSION ?= 2300
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
@@ -172,7 +172,8 @@ extern "C" {
172172
#define SYSTEM_VERSION_v220RC1 SYSTEM_VERSION_RC(2, 2, 0, 1)
173173
#define SYSTEM_VERSION_v220RC2 SYSTEM_VERSION_RC(2, 2, 0, 2)
174174
#define SYSTEM_VERSION_v220 SYSTEM_VERSION_DEFAULT(2, 2, 0)
175-
#define SYSTEM_VERSION SYSTEM_VERSION_v220
175+
#define SYSTEM_VERSION_v230RC1 SYSTEM_VERSION_RC(2, 3, 0, 1)
176+
#define SYSTEM_VERSION SYSTEM_VERSION_v230RC1
176177

177178
/**
178179
* Previously we would set the least significant byte to 0 for the final release, but to make
@@ -309,6 +310,7 @@ extern "C" {
309310
#define SYSTEM_VERSION_220RC1
310311
#define SYSTEM_VERSION_220RC2
311312
#define SYSTEM_VERSION_220
313+
#define SYSTEM_VERSION_230RC1
312314

313315
typedef struct __attribute__((packed)) SystemVersionInfo
314316
{

system/system-versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
| 1006 | 2200 | 2.2.0-rc.1 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
139139
| 1006 | 2201 | 2.2.0-rc.2 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
140140
| 1006 | 2202 | 2.2.0 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
141+
| 1006 | 2300 | 2.3.0-rc.1 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
141142

142143
[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.
143144

0 commit comments

Comments
 (0)