Skip to content

Commit

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

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

### BUGFIXES

- [Electron] Bug fixes for SARA-R410 LTE E Series [#1547](https://github.com/particle-iot/firmware/pull/1547)

## 0.8.0-rc.6

**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.6"
VERSION="0.8.0-rc.7"

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.6
VERSION_STRING = 0.8.0-rc.7

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

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 ?= 305
SYSTEM_PART2_MODULE_VERSION ?= 305
SYSTEM_PART3_MODULE_VERSION ?= 305
SYSTEM_PART1_MODULE_VERSION ?= 306
SYSTEM_PART2_MODULE_VERSION ?= 306
SYSTEM_PART3_MODULE_VERSION ?= 306

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 @@ -74,7 +74,8 @@ extern "C" {
#define SYSTEM_VERSION_v080RC4 0x00080004
#define SYSTEM_VERSION_v080RC5 0x00080005
#define SYSTEM_VERSION_v080RC6 0x00080006
#define SYSTEM_VERSION SYSTEM_VERSION_v080RC6
#define SYSTEM_VERSION_v080RC7 0x00080007
#define SYSTEM_VERSION SYSTEM_VERSION_v080RC7

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

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 @@ -51,6 +51,7 @@
| 201 | 303 | 0.8.0-rc.4 | (Core, Photon, P1, Electron) |
| 201 | 304 | 0.8.0-rc.5 | (Core, Photon, P1, Electron) |
| 201 | 305 | 0.8.0-rc.6 | (Core, Photon, P1, Electron) |
| 201 | 305 | 0.8.0-rc.7 | (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 ad3b66f

Please sign in to comment.