Skip to content

Commit 55f59c1

Browse files
committed
bump module version for 2.0.0-alpha.2 (2001)
1 parent 5dd847d commit 55f59c1

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 2.0.0-alpha.1
1+
## 2.0.0-alpha.1, 2.0.0-alpha.2
22

33
### BREAKING CHANGES
44

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="2.0.0-alpha.1"
4+
VERSION="2.0.0-alpha.2"
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 = 2.0.0-alpha.1
1+
VERSION_STRING = 2.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 = 2000
5+
VERSION = 2001
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 ?= 2000
3+
COMMON_MODULE_VERSION ?= 2001
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
@@ -154,7 +154,8 @@ extern "C" {
154154
#define SYSTEM_VERSION_v152 SYSTEM_VERSION_DEFAULT(1, 5, 2)
155155
#define SYSTEM_VERSION_v153TRACKER1 SYSTEM_VERSION_RC(1, 5, 3, 1)
156156
#define SYSTEM_VERSION_v200ALPHA1 SYSTEM_VERSION_ALPHA(2, 0, 0, 1)
157-
#define SYSTEM_VERSION SYSTEM_VERSION_v200ALPHA1
157+
#define SYSTEM_VERSION_v200ALPHA2 SYSTEM_VERSION_ALPHA(2, 0, 0, 2)
158+
#define SYSTEM_VERSION SYSTEM_VERSION_v200ALPHA2
158159

159160
/**
160161
* Previously we would set the least significant byte to 0 for the final release, but to make
@@ -273,6 +274,7 @@ extern "C" {
273274
#define SYSTEM_VERSION_152
274275
#define SYSTEM_VERSION_153TRACKER1
275276
#define SYSTEM_VERSION_200ALPHA1
277+
#define SYSTEM_VERSION_200ALPHA2
276278

277279
typedef struct __attribute__((packed)) SystemVersionInfo
278280
{

system/system-versions.md

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
| 502 | 1512 | 1.5.2 | Photon, P1, Electron, Xenon, Argon, Boron, B SoM, B5 SoM |
121121
| 502 | 1513 | 1.5.3-tracker.1 | Tracker |
122122
| 1000 | 2000 | 2.0.0-alpha.1 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
123+
| 1000 | 2001 | 2.0.0-alpha.2 | Photon, P1, Electron, Argon, Boron, B SoM, B5 SoM, Tracker |
123124

124125
[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.
125126

0 commit comments

Comments
 (0)