Skip to content

Commit

Permalink
bump module version for 0.8.0-rc.9 (v308), update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
technobly committed Jul 30, 2018
1 parent b9aee44 commit 8db1a25
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.8.0-rc.9

### BUGFIXES

- [Electron/LTE] Fast OTA Fixes [#1558](https://github.com/particle-iot/firmware/pull/1558)

## 0.8.0-rc.8

**Note:** This is primarily a MFG. release for SARA-R410 LTE modules. The changes do touch code used on other Electron based platforms, but no other features or fixes are relevant for U260, U270, U201, or G350 modems. This code has been tested on-device for all mentioned modem types with passing results. Please let us know if you find any issues.
Expand Down
2 changes: 1 addition & 1 deletion build/release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION="0.8.0-rc.8"
VERSION="0.8.0-rc.9"

function release_file()
{
Expand Down
4 changes: 2 additions & 2 deletions build/version.mk
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

VERSION_STRING = 0.8.0-rc.8
VERSION_STRING = 0.8.0-rc.9

# PRODUCT_FIRMWARE_VERSION reported by default
# FIXME: Unclear if this is used, PRODUCT_FIRMWARE_VERSION defaults to 65535 every release
VERSION = 307
VERSION = 308

CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)
6 changes: 3 additions & 3 deletions modules/shared/system_module_version.mk
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Skip to next 100 every v0.x.0 release (e.g. 108 for v0.6.2 to 200 for v0.7.0-rc.1)
# Bump by 1 for every prerelease or release with the same v0.x.* base.
SYSTEM_PART1_MODULE_VERSION ?= 307
SYSTEM_PART2_MODULE_VERSION ?= 307
SYSTEM_PART3_MODULE_VERSION ?= 307
SYSTEM_PART1_MODULE_VERSION ?= 308
SYSTEM_PART2_MODULE_VERSION ?= 308
SYSTEM_PART3_MODULE_VERSION ?= 308

RELEASE_080_MODULE_VERSION_BASE ?= 300
RELEASE_070_RC5_MODULE_VERSION ?= 204
Expand Down
4 changes: 3 additions & 1 deletion system/inc/system_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ extern "C" {
#define SYSTEM_VERSION_v080RC6 0x00080006
#define SYSTEM_VERSION_v080RC7 0x00080007
#define SYSTEM_VERSION_v080RC8 0x00080008
#define SYSTEM_VERSION SYSTEM_VERSION_v080RC8
#define SYSTEM_VERSION_v080RC9 0x00080009
#define SYSTEM_VERSION SYSTEM_VERSION_v080RC9

/**
* For Library/App creators. Can be used to ensure features/api's are present.
Expand Down Expand Up @@ -130,6 +131,7 @@ extern "C" {
#define SYSTEM_VERSION_080RC6
#define SYSTEM_VERSION_080RC7
#define SYSTEM_VERSION_080RC8
#define SYSTEM_VERSION_080RC9

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 @@ -53,6 +53,7 @@
| 201 | 305 | 0.8.0-rc.6 | (Core, Photon, P1, Electron) |
| 201 | 306 | 0.8.0-rc.7 | (Core, Photon, P1, Electron) |
| 201 | 307 | 0.8.0-rc.8 | (Core, Photon, P1, Electron) |
| 201 | 308 | 0.8.0-rc.9 | (Core, Photon, P1, Electron) |

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

Expand Down

0 comments on commit 8db1a25

Please sign in to comment.