Skip to content

Commit b673c06

Browse files
committed
Bump versions for 0.2.1
1 parent b54734a commit b673c06

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

bootloader/import.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BOOTLOADER_MODULE_PATH ?= $(PROJECT_ROOT)/bootloader
2-
BOOTLOADER_VERSION ?= 2
2+
BOOTLOADER_VERSION ?= 3
33
BOOTLOADER_BUILD_PATH_EXT = $(BUILD_TARGET_PLATFORM)
44

55
# bring in the include folders from inc and src/<platform> is includes

build/version.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
VERSION_STRING = 0.2.0
2+
VERSION_STRING = 0.2.1
33

44
# PRODUCT_FIRMWARE_VERSION reported by default
5-
VERSION = 2
5+
VERSION = 3
66

77
CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
SYSTEM_PART1_MODULE_VERSION ?= 2
2-
SYSTEM_PART2_MODULE_VERSION ?= 2
3-
USER_PART_MODULE_VERSION ?= 2
1+
SYSTEM_PART1_MODULE_VERSION ?= 3
2+
SYSTEM_PART2_MODULE_VERSION ?= 3
3+
USER_PART_MODULE_VERSION ?= 3

system/inc/system_version.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ extern "C" {
3030

3131
#define SYSTEM_VERSION_v011 0x00010100
3232
#define SYSTEM_VERSION_v020 0x00020000
33+
#define SYSTEM_VERSION_v021 0x00020100
3334

34-
#define SYSTEM_VERSION SYSTEM_VERSION_v020
35+
#define SYSTEM_VERSION SYSTEM_VERSION_v021
3536

3637
#define SYSTEM_VERSION_011
3738
#define SYSTEM_VERSION_020
39+
#define SYSTEM_VERSION_021
3840

3941
typedef struct __attribute__((packed)) SystemVersionInfo
4042
{

0 commit comments

Comments
 (0)