Skip to content

Commit

Permalink
changelog and bump module versions for 0.7.0-rc.4 (v203)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mcgowan committed Nov 7, 2017
1 parent f982590 commit 4266ff8
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 9 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 0.7.0-rc.4

### ENHANCEMENTS

- USART Half-duplex enhancements [#1308](https://github.com/spark/firmware/pull/1380)

### BUGFIX

- KRACK WPA2 security bugfix [#1420](https://github.com/spark/firmware/pull/1420)
- Monolithic build linker error [#1370](https://github.com/spark/firmware/pull/1370)
- 4-digit serial numbers had additional characters [#1380](https://github.com/spark/firmware/pull/1380)


## 0.7.0-rc.3

### DEPRECATED API
Expand Down
4 changes: 2 additions & 2 deletions build/release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION="0.7.0-rc.3"
VERSION="0.7.0-rc.4"

function release_file()
{
Expand Down Expand Up @@ -62,4 +62,4 @@ else if [ $1 -eq 0 ]; then
cd ../modules
fi
fi
fi
fi
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.7.0-rc.3
VERSION_STRING = 0.7.0-rc.4

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

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 ?= 202
SYSTEM_PART2_MODULE_VERSION ?= 202
SYSTEM_PART3_MODULE_VERSION ?= 202
SYSTEM_PART1_MODULE_VERSION ?= 203
SYSTEM_PART2_MODULE_VERSION ?= 203
SYSTEM_PART3_MODULE_VERSION ?= 203

# Bump by 1 if Tinker has been updated
USER_PART_MODULE_VERSION ?= 5
Expand Down
5 changes: 3 additions & 2 deletions system/inc/system_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ extern "C" {
#define SYSTEM_VERSION_v070RC1 0x00070001
#define SYSTEM_VERSION_v070RC2 0x00070002
#define SYSTEM_VERSION_v070RC3 0x00070003

#define SYSTEM_VERSION SYSTEM_VERSION_v070RC3
#define SYSTEM_VERSION_v070RC4 0x00070004
#define SYSTEM_VERSION SYSTEM_VERSION_v070RC4

/**
* For Library/App creators. Can be used to ensure features/api's are present.
Expand Down Expand Up @@ -97,6 +97,7 @@ extern "C" {
#define SYSTEM_VERSION_070RC1
#define SYSTEM_VERSION_070RC2
#define SYSTEM_VERSION_070RC3
#define SYSTEM_VERSION_070RC4

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 @@ -36,6 +36,7 @@
| 100 | 200 | 0.7.0-rc.1 | (Core, Photon, P1, Electron) |
| 100 | 201 | 0.7.0-rc.2 | (Core, Photon, P1, Electron) |
| 100 | 202 | 0.7.0-rc.3 | (Core, Photon, P1, Electron) |
| 100 | 203 | 0.6.0-rc.4 | (Core, Photon, P1, Electron) |

This comment has been minimized.

Copy link
@avtolstoy

avtolstoy Nov 9, 2017

Member

This is still a typo :)


To find out the release version of system firmware currently installed, in listening mode,
connect to serial and send `v` to print the release version string.
Expand Down

0 comments on commit 4266ff8

Please sign in to comment.