Skip to content

Commit c2615ce

Browse files
committed
v3.2.0b4
1 parent ccb6251 commit c2615ce

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

CHANGELOG.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@
44

55
## [Unreleased]
66

7+
## [3.2.0b4] - 2022-10-21
8+
79
### Added
810
- Indicate that the hub is shutting down by quickly flashing the hub light for
911
half a second. This makes it easier to see when you can stop pressing the
1012
button.
1113
- Indicate that the SPIKE Prime hub is booting and shutting down by fading
1214
the stop sign in and out.
1315
- Implemented iterator protocol on `geometry.Matrix` class.
14-
- Added experimental support for multi-file
15-
projects ([pybricks-micropython#115]).
16+
- Added support for multi-file projects ([pybricks-micropython#115]).
17+
- Added new `System.storage()` API ([support#85]).
1618

1719
### Changed
1820
- Battery full indication (green light) comes on earlier ([support#647]).
@@ -34,6 +36,9 @@
3436
- When using the REPL, everything from all Pybricks modules was automatically
3537
imported for convenience. Now, MicroPython modules are also automatically
3638
imported ([support#741]).
39+
- Updated Bluetooth to [Pybricks Profile v1.2.0][pp1.2.0].
40+
- Bluetooth now uses random private address instead of static public address
41+
([support#600]).
3742

3843
### Fixed
3944
- Fixed motors going out of sync when starting program ([support#679]).
@@ -43,11 +48,13 @@
4348
- Fixed REPL history corrupt after soft reset ([support#699]).
4449
- Fixed "ValueError: incompatible .mpy file" when pressing the button when
4550
there is no program yet ([support#599]).
46-
- Fixed automatic imports when using the REPL ([support#741]).
4751

52+
[pp1.2.0]: https://github.com/pybricks/technical-info/blob/master/pybricks-ble-profile.md#profile-v120
4853
[pybricks-micropython#115]: https://github.com/pybricks/pybricks-micropython/pull/115
54+
[support#85]: https://github.com/pybricks/support/issues/85
4955
[support#232]: https://github.com/pybricks/support/issues/232
50-
[support#232]: https://github.com/pybricks/support/issues/599
56+
[support#599]: https://github.com/pybricks/support/issues/599
57+
[support#600]: https://github.com/pybricks/support/issues/600
5158
[support#647]: https://github.com/pybricks/support/issues/647
5259
[support#679]: https://github.com/pybricks/support/issues/679
5360
[support#692]: https://github.com/pybricks/support/issues/692
@@ -335,7 +342,8 @@ Prerelease changes are documented at [support#48].
335342

336343

337344
<!-- diff links for headers -->
338-
[Unreleased]: https://github.com/pybricks/pybricks-micropython/compare/v3.2.0b3...HEAD
345+
[Unreleased]: https://github.com/pybricks/pybricks-micropython/compare/v3.2.0b4...HEAD
346+
[3.2.0b4]: https://github.com/pybricks/pybricks-micropython/compare/v3.2.0b3...v3.2.0b4
339347
[3.2.0b3]: https://github.com/pybricks/pybricks-micropython/compare/v3.2.0b2...v3.2.0b3
340348
[3.2.0b2]: https://github.com/pybricks/pybricks-micropython/compare/v3.2.0b1...v3.2.0b2
341349
[3.2.0b1]: https://github.com/pybricks/pybricks-micropython/compare/v3.1.0...v3.2.0b1

lib/pbio/include/pbio/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define PBIO_VERSION_LEVEL_HEX 0xB
2727

2828
/** The current prerelease serial. */
29-
#define PBIO_VERSION_SERIAL 3
29+
#define PBIO_VERSION_SERIAL 4
3030

3131
/**
3232
* The current prerelease level as a string.

0 commit comments

Comments
 (0)