Skip to content

Commit

Permalink
bump module version to 6.3.0 (6302)
Browse files Browse the repository at this point in the history
  • Loading branch information
avtolstoy committed Feb 4, 2025
1 parent 521d285 commit acc62d5
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 5 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## 6.3.0

### FEATURES

- New cloud event API that supports sending and receiving up to 16K of data in an event [#2840](https://github.com/particle-iot/device-os/pull/2840)
- Electron 2 platform support [#2844](https://github.com/particle-iot/device-os/pull/2844)

### ENHANCEMENTS
- [wiring] Generate an error when using `EEPROM` with `String` objects as `String` contains dynamically allocated data on heap [#2855](https://github.com/particle-iot/device-os/pull/2855)
- [network] Postpone `Ethernet` interface initialization to allow STARTUP() call to override pin configuration without a reset [#2848](https://github.com/particle-iot/device-os/pull/2848)

### BUGFIXES

- Prevent low-level WiFI network buffer overflow [#2853](https://github.com/particle-iot/device-os/pull/2853)
- [Gen 3] Increase main stack size from 2K to 4K [#2851](https://github.com/particle-iot/device-os/pull/2851)
- Thread-safe `__cxa_guard_acquire`/`__cxa_guard_release` implementation [#2851](https://github.com/particle-iot/device-os/pull/2851)
- [build] Fix section size calculations for paths containing section-like names [#2852](https://github.com/particle-iot/device-os/pull/2852)

### INTERNAL
- [test] wiring/no_fixture_long_running: update network tests to stress test large packets up to MTU size once max MTU is figured out [#2855](https://github.com/particle-iot/device-os/pull/2855)
- [test] communication/long_publish: adds a long running publish test [#2854](https://github.com/particle-iot/device-os/pull/2854)
- [build] Add asserts to linker files to make sure that stack sizes match the expected values [#2851](https://github.com/particle-iot/device-os/pull/2851)
- Stub `atexit` to free up flash space used by global object destructors [#2851](https://github.com/particle-iot/device-os/pull/2851)

## 6.2.1

### FEATURES
Expand Down
2 changes: 1 addition & 1 deletion build/release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -o errexit -o pipefail -o noclobber -o nounset

VERSION=${VERSION:="6.3.0-rc.1"}
VERSION=${VERSION:="6.3.0"}

function display_help ()
{
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 = 6.3.0-rc.1
VERSION_STRING = 6.3.0

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

CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)
2 changes: 1 addition & 1 deletion modules/shared/system_module_version.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 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.
COMMON_MODULE_VERSION ?= 6300
COMMON_MODULE_VERSION ?= 6302
SYSTEM_PART1_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)

RELEASE_080_MODULE_VERSION_BASE ?= 300
Expand Down
6 changes: 5 additions & 1 deletion system/inc/system_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@ extern "C" {
#define SYSTEM_VERSION_v620 SYSTEM_VERSION_DEFAULT(6, 2, 0)
#define SYSTEM_VERSION_v621 SYSTEM_VERSION_DEFAULT(6, 2, 1)
#define SYSTEM_VERSION_v630RC1 SYSTEM_VERSION_RC(6, 3, 0, 1)
#define SYSTEM_VERSION SYSTEM_VERSION_v630RC1
#define SYSTEM_VERSION_v630RC2 SYSTEM_VERSION_RC(6, 3, 0, 2)
#define SYSTEM_VERSION_v630 SYSTEM_VERSION_DEFAULT(6, 3, 0)
#define SYSTEM_VERSION SYSTEM_VERSION_v630

/**
* Previously we would set the least significant byte to 0 for the final release, but to make
Expand Down Expand Up @@ -415,6 +417,8 @@ extern "C" {
#define SYSTEM_VERSION_620
#define SYSTEM_VERSION_621
#define SYSTEM_VERSION_630RC1
#define SYSTEM_VERSION_630RC2
#define SYSTEM_VERSION_630

typedef struct __attribute__((packed)) SystemVersionInfo
{
Expand Down
2 changes: 2 additions & 0 deletions system/system-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@
| 3100 | 6200 | 6.2.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
| 3101 | 6201 | 6.2.1 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
| 3101 | 6300 | 6.3.0-rc.1 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
| 3101 | 6301 | 6.3.0-rc.2 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
| 3101 | 6302 | 6.3.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |

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

Please sign in to comment.