Skip to content

Commit

Permalink
bump module version for 0.5.3-rc.3 (v20), update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
technobly committed Aug 25, 2016
1 parent c1ba8df commit 07dd622
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v0.5.3-rc.3

### ENHANCEMENTS

- Automatically adds vendored libraries from the `lib` directory for extended application projects [#1053](https://github.com/spark/firmware/pull/1053)

### INTERNAL

- Feature/vendorlibraries [#1009](https://github.com/spark/firmware/pull/1009)


## v0.5.3-rc.2

### FEATURE
Expand Down
4 changes: 2 additions & 2 deletions build/release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if [ $1 -eq 6 ] || [ $1 -eq 8 ]; then
VERSION="0.5.3-rc.2"
VERSION="0.5.3-rc.3"
#else if [ $1 -eq 10 ]; then
# VERSION="0.5.0-rc.2"
# VERSION="0.5.3-rc.3"
# fi
#fi

Expand Down
4 changes: 2 additions & 2 deletions build/version.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_STRING = 0.5.3-rc.2
VERSION_STRING = 0.5.3-rc.3

# PRODUCT_FIRMWARE_VERSION reported by default
VERSION = 19
VERSION = 20

CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)
4 changes: 2 additions & 2 deletions modules/shared/system_module_version.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SYSTEM_PART1_MODULE_VERSION ?= 19
SYSTEM_PART2_MODULE_VERSION ?= 19
SYSTEM_PART1_MODULE_VERSION ?= 20
SYSTEM_PART2_MODULE_VERSION ?= 20
USER_PART_MODULE_VERSION ?= 4
4 changes: 3 additions & 1 deletion system/inc/system_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ extern "C" {
#define SYSTEM_VERSION_v052 0x00050200
#define SYSTEM_VERSION_v053RC1 0x00050301
#define SYSTEM_VERSION_v053RC2 0x00050302
#define SYSTEM_VERSION_v053RC3 0x00050303

#define SYSTEM_VERSION SYSTEM_VERSION_v053RC2
#define SYSTEM_VERSION SYSTEM_VERSION_v053RC3

#define SYSTEM_VERSION_040
#define SYSTEM_VERSION_041
Expand All @@ -65,6 +66,7 @@ extern "C" {
#define SYSTEM_VERSION_052
#define SYSTEM_VERSION_053RC1
#define SYSTEM_VERSION_053RC2
#define SYSTEM_VERSION_053RC3

typedef struct __attribute__((packed)) SystemVersionInfo
{
Expand Down
1 change: 1 addition & 0 deletions system/system-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
| 17 | 0.5.2 | (Core, Photon, P1, Electron)
| 18 | 0.5.3-rc.1 | (Core, Photon, P1, Electron)
| 19 | 0.5.3-rc.2 | (Core, Photon, P1, Electron)
| 20 | 0.5.3-rc.3 | (Core, Photon, P1, Electron)
-------------

To find out the release version of system firmware currently installed, in listening mode,
Expand Down

0 comments on commit 07dd622

Please sign in to comment.